reorganize classes so test data is separate from test cases

This commit is contained in:
John J. Aylward
2017-07-09 16:33:39 -04:00
parent 974a5f7d5d
commit 0e3f23d7a1
16 changed files with 44 additions and 30 deletions

View File

@@ -0,0 +1,10 @@
package org.json.junit.data;
/**
* An enum with no methods or data
*/
public enum MyEnum {
VAL1,
VAL2,
VAL3;
}