aboutsummaryrefslogtreecommitdiffstats
path: root/aai-core
diff options
context:
space:
mode:
Diffstat (limited to 'aai-core')
-rw-r--r--aai-core/src/test/java/org/onap/aai/introspection/JSONStrategyTest.java10
1 files changed, 9 insertions, 1 deletions
diff --git a/aai-core/src/test/java/org/onap/aai/introspection/JSONStrategyTest.java b/aai-core/src/test/java/org/onap/aai/introspection/JSONStrategyTest.java
index b684e3fa..7b15e8ca 100644
--- a/aai-core/src/test/java/org/onap/aai/introspection/JSONStrategyTest.java
+++ b/aai-core/src/test/java/org/onap/aai/introspection/JSONStrategyTest.java
@@ -67,8 +67,16 @@ public class JSONStrategyTest extends AAISetup {
Assert.assertEquals("value1", jsonStrategy.getValue("hostname"));
Assert.assertEquals(4, jsonStrategy.getValue("numberofCpus"));
Assert.assertEquals(1024, jsonStrategy.getValue("ramInMegabytes"));
- }
+ }
+ @Test
+ public void testGetMethods(){
+ Assert.assertEquals("pserver-type",jsonStrategy.getName());
+ Assert.assertEquals("pserver-type",jsonStrategy.getDbName());
+ Assert.assertEquals("",jsonStrategy.getGenericURI());
+ Assert.assertNull(jsonStrategy.getChildName());
+ Assert.assertEquals("key",jsonStrategy.preProcessKey("key"));
+ }
@Test
public void getPropertiesTest() {
Set<String> expected = new HashSet<>();