Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / android / android_api / base / src / androidTest / java / org / iotivity / base / OcRepresentationTest.java
index cbed2d5..c7b5f30 100644 (file)
@@ -190,6 +190,12 @@ public class OcRepresentationTest extends InstrumentationTestCase {
     public void testAttributeAccessByType() throws OcException {
         OcRepresentation rep = new OcRepresentation();
 
+        //null
+        OcRepresentation repNull = null;
+        rep.setValue("nullKey", repNull);
+        OcRepresentation repNullActual = rep.getValue("nullKey");
+        assertNull(repNullActual);
+
         //integer
         String intK = "intK";
         int intV = 4;