support enum testing

This commit is contained in:
stleary
2015-06-03 22:50:08 -05:00
parent 32ea7e0ba3
commit 6b03f1bbe7
5 changed files with 131 additions and 1 deletions

7
MyEnum.java Normal file
View File

@@ -0,0 +1,7 @@
package org.json.junit;
public enum MyEnum {
VAL1,
VAL2,
VAL3;
}