mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-18 00:10:51 -07:00
reorganize classes so test data is separate from test cases
This commit is contained in:
parent
974a5f7d5d
commit
0e3f23d7a1
16 changed files with 44 additions and 30 deletions
|
@ -10,6 +10,9 @@ import java.util.Map;
|
|||
|
||||
import org.json.JSONArray;
|
||||
import org.json.JSONObject;
|
||||
import org.json.junit.data.MyEnum;
|
||||
import org.json.junit.data.MyEnumClass;
|
||||
import org.json.junit.data.MyEnumField;
|
||||
import org.junit.Test;
|
||||
|
||||
import com.jayway.jsonpath.Configuration;
|
||||
|
@ -195,7 +198,7 @@ public class EnumTest {
|
|||
* However, an enum within another class will not be rendered
|
||||
* unless that class overrides default toString()
|
||||
*/
|
||||
String expectedStr3 = "\"org.json.junit.MyEnumClass@";
|
||||
String expectedStr3 = "\"org.json.junit.data.MyEnumClass@";
|
||||
myEnumClass.setMyEnum(MyEnum.VAL1);
|
||||
myEnumClass.setMyEnumField(MyEnumField.VAL1);
|
||||
String str3 = JSONObject.valueToString(myEnumClass);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue