mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
Tests for toString(), write(), toList(), and toMap().
Explicitly test variations of toString() and write() for different indent levels, and different method overloads. Also create some tests for the new toList() and toMap() methods for coverage improvements to JSONArray and JSONObject.
This commit is contained in:
parent
c3ba4bdbe5
commit
72c2b911bf
2 changed files with 373 additions and 2 deletions
|
@ -2,7 +2,10 @@ package org.json.junit;
|
||||||
|
|
||||||
import static org.junit.Assert.assertNull;
|
import static org.junit.Assert.assertNull;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
|
||||||
|
import java.io.StringWriter;
|
||||||
|
import java.io.Writer;
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.math.BigInteger;
|
import java.math.BigInteger;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -639,6 +642,71 @@ public class JSONArrayTest {
|
||||||
!jsonArray.similar(otherJsonArray));
|
!jsonArray.similar(otherJsonArray));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exercise JSONArray toString() method with various indent levels.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void jsonArrayToStringIndent() {
|
||||||
|
String jsonArray0Str =
|
||||||
|
"[" +
|
||||||
|
"[1,2," +
|
||||||
|
"{\"key3\":true}" +
|
||||||
|
"]," +
|
||||||
|
"{\"key1\":\"val1\",\"key2\":" +
|
||||||
|
"{\"key2\":\"val2\"}" +
|
||||||
|
"}," +
|
||||||
|
"[" +
|
||||||
|
"[1,2.1]" +
|
||||||
|
"," +
|
||||||
|
"[null]" +
|
||||||
|
"]" +
|
||||||
|
"]";
|
||||||
|
|
||||||
|
String jsonArray1Str =
|
||||||
|
"[\n" +
|
||||||
|
" [\n" +
|
||||||
|
" 1,\n" +
|
||||||
|
" 2,\n" +
|
||||||
|
" {\"key3\": true}\n" +
|
||||||
|
" ],\n" +
|
||||||
|
" {\n" +
|
||||||
|
" \"key1\": \"val1\",\n" +
|
||||||
|
" \"key2\": {\"key2\": \"val2\"}\n" +
|
||||||
|
" },\n" +
|
||||||
|
" [\n" +
|
||||||
|
" [\n" +
|
||||||
|
" 1,\n" +
|
||||||
|
" 2.1\n" +
|
||||||
|
" ],\n" +
|
||||||
|
" [null]\n" +
|
||||||
|
" ]\n" +
|
||||||
|
"]";
|
||||||
|
String jsonArray4Str =
|
||||||
|
"[\n" +
|
||||||
|
" [\n" +
|
||||||
|
" 1,\n" +
|
||||||
|
" 2,\n" +
|
||||||
|
" {\"key3\": true}\n" +
|
||||||
|
" ],\n" +
|
||||||
|
" {\n" +
|
||||||
|
" \"key1\": \"val1\",\n" +
|
||||||
|
" \"key2\": {\"key2\": \"val2\"}\n" +
|
||||||
|
" },\n" +
|
||||||
|
" [\n" +
|
||||||
|
" [\n" +
|
||||||
|
" 1,\n" +
|
||||||
|
" 2.1\n" +
|
||||||
|
" ],\n" +
|
||||||
|
" [null]\n" +
|
||||||
|
" ]\n" +
|
||||||
|
"]";
|
||||||
|
JSONArray jsonArray = new JSONArray(jsonArray0Str);
|
||||||
|
assertEquals(jsonArray0Str, jsonArray.toString());
|
||||||
|
assertEquals(jsonArray0Str, jsonArray.toString(0));
|
||||||
|
assertEquals(jsonArray1Str, jsonArray.toString(1));
|
||||||
|
assertEquals(jsonArray4Str, jsonArray.toString(4));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert an empty JSONArray to JSONObject
|
* Convert an empty JSONArray to JSONObject
|
||||||
*/
|
*/
|
||||||
|
@ -726,4 +794,131 @@ public class JSONArrayTest {
|
||||||
public void optQueryWithSyntaxError() {
|
public void optQueryWithSyntaxError() {
|
||||||
new JSONArray().optQuery("invalid");
|
new JSONArray().optQuery("invalid");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exercise the JSONArray write() method
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void write() {
|
||||||
|
String str = "[\"value1\",\"value2\",{\"key1\":1,\"key2\":2,\"key3\":3}]";
|
||||||
|
String expectedStr = str;
|
||||||
|
JSONArray jsonArray = new JSONArray(str);
|
||||||
|
StringWriter stringWriter = new StringWriter();
|
||||||
|
Writer writer = jsonArray.write(stringWriter);
|
||||||
|
String actualStr = writer.toString();
|
||||||
|
assertTrue("write() expected " + expectedStr +
|
||||||
|
"but found " + actualStr,
|
||||||
|
expectedStr.equals(actualStr));
|
||||||
|
StringBuilder stringBuilder = new StringBuilder();
|
||||||
|
Appendable appendable = jsonArray.write(stringBuilder);
|
||||||
|
actualStr = appendable.toString();
|
||||||
|
assertTrue("write() expected " + expectedStr +
|
||||||
|
"but found " + actualStr,
|
||||||
|
expectedStr.equals(actualStr));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exercise the JSONArray write(Appendable, int, int) method
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void write3Param() {
|
||||||
|
String str0 = "[\"value1\",\"value2\",{\"key1\":1,\"key2\":false,\"key3\":3.14}]";
|
||||||
|
String str2 =
|
||||||
|
"[\n" +
|
||||||
|
" \"value1\",\n" +
|
||||||
|
" \"value2\",\n" +
|
||||||
|
" {\n" +
|
||||||
|
" \"key1\": 1,\n" +
|
||||||
|
" \"key2\": false,\n" +
|
||||||
|
" \"key3\": 3.14\n" +
|
||||||
|
" }\n" +
|
||||||
|
" ]";
|
||||||
|
String expectedStr = str0;
|
||||||
|
JSONArray jsonArray = new JSONArray(str0);
|
||||||
|
StringWriter stringWriter = new StringWriter();
|
||||||
|
Writer writer = jsonArray.write(stringWriter, 0, 0);
|
||||||
|
String actualStr = writer.toString();
|
||||||
|
assertEquals(expectedStr, actualStr);
|
||||||
|
expectedStr = str0;
|
||||||
|
StringBuilder stringBuilder = new StringBuilder();
|
||||||
|
Appendable appendable = jsonArray.write(stringBuilder, 0, 0);
|
||||||
|
actualStr = appendable.toString();
|
||||||
|
assertEquals(expectedStr, actualStr);
|
||||||
|
expectedStr = str2;
|
||||||
|
stringBuilder = new StringBuilder();
|
||||||
|
appendable = jsonArray.write(stringBuilder, 2, 1);
|
||||||
|
actualStr = appendable.toString();
|
||||||
|
assertEquals(expectedStr, actualStr);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exercise JSONArray toString() method with various indent levels.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void toList() {
|
||||||
|
String jsonArrayStr =
|
||||||
|
"[" +
|
||||||
|
"[1,2," +
|
||||||
|
"{\"key3\":true}" +
|
||||||
|
"]," +
|
||||||
|
"{\"key1\":\"val1\",\"key2\":" +
|
||||||
|
"{\"key2\":null}," +
|
||||||
|
"\"key3\":42,\"key4\":[]" +
|
||||||
|
"}," +
|
||||||
|
"[" +
|
||||||
|
"[\"value1\",2.1]" +
|
||||||
|
"," +
|
||||||
|
"[null]" +
|
||||||
|
"]" +
|
||||||
|
"]";
|
||||||
|
|
||||||
|
JSONArray jsonArray = new JSONArray(jsonArrayStr);
|
||||||
|
List list = jsonArray.toList();
|
||||||
|
|
||||||
|
assertTrue("List should not be null", list != null);
|
||||||
|
assertTrue("List should have 3 elements", list.size() == 3);
|
||||||
|
|
||||||
|
List val1List = (List) list.get(0);
|
||||||
|
assertTrue("val1 should not be null", val1List != null);
|
||||||
|
assertTrue("val1 should have 3 elements", val1List.size() == 3);
|
||||||
|
|
||||||
|
assertTrue("val1 value 1 should be 1", val1List.get(0).equals(Integer.valueOf(1)));
|
||||||
|
assertTrue("val1 value 2 should be 2", val1List.get(1).equals(Integer.valueOf(2)));
|
||||||
|
|
||||||
|
Map key1Value3Map = (Map)val1List.get(2);
|
||||||
|
assertTrue("Map should not be null", key1Value3Map != null);
|
||||||
|
assertTrue("Map should have 1 element", key1Value3Map.size() == 1);
|
||||||
|
assertTrue("Map key3 should be true", key1Value3Map.get("key3").equals(Boolean.TRUE));
|
||||||
|
|
||||||
|
Map val2Map = (Map) list.get(1);
|
||||||
|
assertTrue("val2 should not be null", val2Map != null);
|
||||||
|
assertTrue("val2 should have 4 elements", val2Map.size() == 4);
|
||||||
|
assertTrue("val2 map key 1 should be val1", val2Map.get("key1").equals("val1"));
|
||||||
|
assertTrue("val2 map key 3 should be 42", val2Map.get("key3").equals(Integer.valueOf(42)));
|
||||||
|
|
||||||
|
Map val2Key2Map = (Map)val2Map.get("key2");
|
||||||
|
assertTrue("val2 map key 2 should not be null", val2Key2Map != null);
|
||||||
|
assertTrue("val2 map key 2 should have an entry", val2Key2Map.containsKey("key2"));
|
||||||
|
assertTrue("val2 map key 2 value should be null", val2Key2Map.get("key2") == null);
|
||||||
|
|
||||||
|
List val2Key4List = (List)val2Map.get("key4");
|
||||||
|
assertTrue("val2 map key 4 should not be null", val2Key4List != null);
|
||||||
|
assertTrue("val2 map key 4 should be empty", val2Key4List.isEmpty());
|
||||||
|
|
||||||
|
List val3List = (List) list.get(2);
|
||||||
|
assertTrue("val3 should not be null", val3List != null);
|
||||||
|
assertTrue("val3 should have 2 elements", val3List.size() == 2);
|
||||||
|
|
||||||
|
List val3Val1List = (List)val3List.get(0);
|
||||||
|
assertTrue("val3 list val 1 should not be null", val3Val1List != null);
|
||||||
|
assertTrue("val3 list val 1 should have 2 elements", val3Val1List.size() == 2);
|
||||||
|
assertTrue("val3 list val 1 list element 1 should be value1", val3Val1List.get(0).equals("value1"));
|
||||||
|
assertTrue("val3 list val 1 list element 2 should be 2.1", val3Val1List.get(1).equals(Double.valueOf("2.1")));
|
||||||
|
|
||||||
|
List val3Val2List = (List)val3List.get(1);
|
||||||
|
assertTrue("val3 list val 2 should not be null", val3Val2List != null);
|
||||||
|
assertTrue("val3 list val 2 should have 1 element", val3Val2List.size() == 1);
|
||||||
|
assertTrue("val3 list val 2 list element 1 should be null", val3Val2List.get(0) == null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ package org.json.junit;
|
||||||
import static org.junit.Assert.assertFalse;
|
import static org.junit.Assert.assertFalse;
|
||||||
import static org.junit.Assert.assertNull;
|
import static org.junit.Assert.assertNull;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.mockito.Mockito.mock;
|
import static org.mockito.Mockito.mock;
|
||||||
import static org.mockito.Mockito.when;
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
|
@ -1371,6 +1372,74 @@ public class JSONObjectTest {
|
||||||
assertTrue("expected myVal4", "myVal4".equals(jsonObject.query("/objectKey/myKey4")));
|
assertTrue("expected myVal4", "myVal4".equals(jsonObject.query("/objectKey/myKey4")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exercise JSONObject toString() method with various indent levels.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void jsonObjectToStringIndent() {
|
||||||
|
String jsonObject0Str =
|
||||||
|
"{"+
|
||||||
|
"\"key1\":" +
|
||||||
|
"[1,2," +
|
||||||
|
"{\"key3\":true}" +
|
||||||
|
"],"+
|
||||||
|
"\"key2\":" +
|
||||||
|
"{\"key1\":\"val1\",\"key2\":" +
|
||||||
|
"{\"key2\":\"val2\"}" +
|
||||||
|
"},"+
|
||||||
|
"\"key3\":" +
|
||||||
|
"[" +
|
||||||
|
"[1,2.1]" +
|
||||||
|
"," +
|
||||||
|
"[null]" +
|
||||||
|
"]"+
|
||||||
|
"}";
|
||||||
|
|
||||||
|
String jsonObject1Str =
|
||||||
|
"{\n" +
|
||||||
|
" \"key1\": [\n" +
|
||||||
|
" 1,\n" +
|
||||||
|
" 2,\n" +
|
||||||
|
" {\"key3\": true}\n" +
|
||||||
|
" ],\n" +
|
||||||
|
" \"key2\": {\n" +
|
||||||
|
" \"key1\": \"val1\",\n" +
|
||||||
|
" \"key2\": {\"key2\": \"val2\"}\n" +
|
||||||
|
" },\n" +
|
||||||
|
" \"key3\": [\n" +
|
||||||
|
" [\n" +
|
||||||
|
" 1,\n" +
|
||||||
|
" 2.1\n" +
|
||||||
|
" ],\n" +
|
||||||
|
" [null]\n" +
|
||||||
|
" ]\n" +
|
||||||
|
"}";
|
||||||
|
String jsonObject4Str =
|
||||||
|
"{\n" +
|
||||||
|
" \"key1\": [\n" +
|
||||||
|
" 1,\n" +
|
||||||
|
" 2,\n" +
|
||||||
|
" {\"key3\": true}\n" +
|
||||||
|
" ],\n" +
|
||||||
|
" \"key2\": {\n" +
|
||||||
|
" \"key1\": \"val1\",\n" +
|
||||||
|
" \"key2\": {\"key2\": \"val2\"}\n" +
|
||||||
|
" },\n" +
|
||||||
|
" \"key3\": [\n" +
|
||||||
|
" [\n" +
|
||||||
|
" 1,\n" +
|
||||||
|
" 2.1\n" +
|
||||||
|
" ],\n" +
|
||||||
|
" [null]\n" +
|
||||||
|
" ]\n" +
|
||||||
|
"}";
|
||||||
|
JSONObject jsonObject = new JSONObject(jsonObject0Str);
|
||||||
|
assertEquals(jsonObject0Str, jsonObject.toString());
|
||||||
|
assertEquals(jsonObject0Str, jsonObject.toString(0));
|
||||||
|
assertEquals(jsonObject1Str, jsonObject.toString(1));
|
||||||
|
assertEquals(jsonObject4Str, jsonObject.toString(4));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Explores how JSONObject handles maps. Insert a string/string map
|
* Explores how JSONObject handles maps. Insert a string/string map
|
||||||
* as a value in a JSONObject. It will remain a map. Convert the
|
* as a value in a JSONObject. It will remain a map. Convert the
|
||||||
|
@ -1441,7 +1510,7 @@ public class JSONObjectTest {
|
||||||
String jsonArrayStr =
|
String jsonArrayStr =
|
||||||
"[1,2,3]";
|
"[1,2,3]";
|
||||||
JSONArray jsonArray = new JSONArray(jsonArrayStr);
|
JSONArray jsonArray = new JSONArray(jsonArrayStr);
|
||||||
assertTrue("jsonArra valueToString() incorrect",
|
assertTrue("jsonArray valueToString() incorrect",
|
||||||
JSONObject.valueToString(jsonArray).equals(jsonArray.toString()));
|
JSONObject.valueToString(jsonArray).equals(jsonArray.toString()));
|
||||||
Map<String, String> map = new HashMap<String, String>();
|
Map<String, String> map = new HashMap<String, String>();
|
||||||
map.put("key1", "val1");
|
map.put("key1", "val1");
|
||||||
|
@ -1840,7 +1909,7 @@ public class JSONObjectTest {
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void write() {
|
public void write() {
|
||||||
String str = "{\"key\":\"value\"}";
|
String str = "{\"key1\":\"value1\",\"key2\":[1,2,3]}";
|
||||||
String expectedStr = str;
|
String expectedStr = str;
|
||||||
JSONObject jsonObject = new JSONObject(str);
|
JSONObject jsonObject = new JSONObject(str);
|
||||||
StringWriter stringWriter = new StringWriter();
|
StringWriter stringWriter = new StringWriter();
|
||||||
|
@ -1849,6 +1918,45 @@ public class JSONObjectTest {
|
||||||
assertTrue("write() expected " +expectedStr+
|
assertTrue("write() expected " +expectedStr+
|
||||||
"but found " +actualStr,
|
"but found " +actualStr,
|
||||||
expectedStr.equals(actualStr));
|
expectedStr.equals(actualStr));
|
||||||
|
StringBuilder stringBuilder = new StringBuilder();
|
||||||
|
Appendable appendable = jsonObject.write(stringBuilder);
|
||||||
|
actualStr = appendable.toString();
|
||||||
|
assertTrue("write() expected " +expectedStr+
|
||||||
|
"but found " +actualStr,
|
||||||
|
expectedStr.equals(actualStr));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exercise the JSONObject write(Appendable, int, int) method
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void write3Param() {
|
||||||
|
String str0 = "{\"key1\":\"value1\",\"key2\":[1,false,3.14]}";
|
||||||
|
String str2 =
|
||||||
|
"{\n" +
|
||||||
|
" \"key1\": \"value1\",\n" +
|
||||||
|
" \"key2\": [\n" +
|
||||||
|
" 1,\n" +
|
||||||
|
" false,\n" +
|
||||||
|
" 3.14\n" +
|
||||||
|
" ]\n" +
|
||||||
|
" }";
|
||||||
|
String expectedStr = str0;
|
||||||
|
JSONObject jsonObject = new JSONObject(str0);
|
||||||
|
StringWriter stringWriter = new StringWriter();
|
||||||
|
Writer writer = jsonObject.write(stringWriter,0,0);
|
||||||
|
String actualStr = writer.toString();
|
||||||
|
assertEquals(expectedStr, actualStr);
|
||||||
|
expectedStr = str0;
|
||||||
|
StringBuilder stringBuilder = new StringBuilder();
|
||||||
|
Appendable appendable = jsonObject.write(stringBuilder,0,0);
|
||||||
|
actualStr = appendable.toString();
|
||||||
|
assertEquals(expectedStr, actualStr);
|
||||||
|
expectedStr = str2;
|
||||||
|
stringBuilder = new StringBuilder();
|
||||||
|
appendable = jsonObject.write(stringBuilder,2,1);
|
||||||
|
actualStr = appendable.toString();
|
||||||
|
assertEquals(expectedStr, actualStr);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1966,4 +2074,72 @@ public class JSONObjectTest {
|
||||||
String json = "{ \"\\url\": \"value\" }";
|
String json = "{ \"\\url\": \"value\" }";
|
||||||
new JSONObject(json);
|
new JSONObject(json);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exercise JSONObject toMap() method.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void toMap() {
|
||||||
|
String jsonObjectStr =
|
||||||
|
"{" +
|
||||||
|
"\"key1\":" +
|
||||||
|
"[1,2," +
|
||||||
|
"{\"key3\":true}" +
|
||||||
|
"]," +
|
||||||
|
"\"key2\":" +
|
||||||
|
"{\"key1\":\"val1\",\"key2\":" +
|
||||||
|
"{\"key2\":null}," +
|
||||||
|
"\"key3\":42" +
|
||||||
|
"}," +
|
||||||
|
"\"key3\":" +
|
||||||
|
"[" +
|
||||||
|
"[\"value1\",2.1]" +
|
||||||
|
"," +
|
||||||
|
"[null]" +
|
||||||
|
"]" +
|
||||||
|
"}";
|
||||||
|
|
||||||
|
JSONObject jsonObject = new JSONObject(jsonObjectStr);
|
||||||
|
Map map = jsonObject.toMap();
|
||||||
|
|
||||||
|
assertTrue("Map should not be null", map != null);
|
||||||
|
assertTrue("Map should have 3 elements", map.size() == 3);
|
||||||
|
|
||||||
|
List key1List = (List)map.get("key1");
|
||||||
|
assertTrue("key1 should not be null", key1List != null);
|
||||||
|
assertTrue("key1 list should have 3 elements", key1List.size() == 3);
|
||||||
|
assertTrue("key1 value 1 should be 1", key1List.get(0).equals(Integer.valueOf(1)));
|
||||||
|
assertTrue("key1 value 2 should be 2", key1List.get(1).equals(Integer.valueOf(2)));
|
||||||
|
|
||||||
|
Map key1Value3Map = (Map)key1List.get(2);
|
||||||
|
assertTrue("Map should not be null", key1Value3Map != null);
|
||||||
|
assertTrue("Map should have 1 element", key1Value3Map.size() == 1);
|
||||||
|
assertTrue("Map key3 should be true", key1Value3Map.get("key3").equals(Boolean.TRUE));
|
||||||
|
|
||||||
|
Map key2Map = (Map)map.get("key2");
|
||||||
|
assertTrue("key2 should not be null", key2Map != null);
|
||||||
|
assertTrue("key2 map should have 3 elements", key2Map.size() == 3);
|
||||||
|
assertTrue("key2 map key 1 should be val1", key2Map.get("key1").equals("val1"));
|
||||||
|
assertTrue("key2 map key 3 should be 42", key2Map.get("key3").equals(Integer.valueOf(42)));
|
||||||
|
|
||||||
|
Map key2Val2Map = (Map)key2Map.get("key2");
|
||||||
|
assertTrue("key2 map key 2 should not be null", key2Val2Map != null);
|
||||||
|
assertTrue("key2 map key 2 should have an entry", key2Val2Map.containsKey("key2"));
|
||||||
|
assertTrue("key2 map key 2 value should be null", key2Val2Map.get("key2") == null);
|
||||||
|
|
||||||
|
List key3List = (List)map.get("key3");
|
||||||
|
assertTrue("key3 should not be null", key3List != null);
|
||||||
|
assertTrue("key3 list should have 3 elements", key3List.size() == 2);
|
||||||
|
|
||||||
|
List key3Val1List = (List)key3List.get(0);
|
||||||
|
assertTrue("key3 list val 1 should not be null", key3Val1List != null);
|
||||||
|
assertTrue("key3 list val 1 should have 2 elements", key3Val1List.size() == 2);
|
||||||
|
assertTrue("key3 list val 1 list element 1 should be value1", key3Val1List.get(0).equals("value1"));
|
||||||
|
assertTrue("key3 list val 1 list element 2 should be 2.1", key3Val1List.get(1).equals(Double.valueOf("2.1")));
|
||||||
|
|
||||||
|
List key3Val2List = (List)key3List.get(1);
|
||||||
|
assertTrue("key3 list val 2 should not be null", key3Val2List != null);
|
||||||
|
assertTrue("key3 list val 2 should have 1 element", key3Val2List.size() == 1);
|
||||||
|
assertTrue("key3 list val 2 list element 1 should be null", key3Val2List.get(0) == null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue