Merge "Update Version to Snapshot and"
authorThomas Nelson <nelson24@att.com>
Wed, 19 Jun 2019 14:37:14 +0000 (14:37 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 19 Jun 2019 14:37:14 +0000 (14:37 +0000)
src/test/java/org/onap/music/unittests/JsonResponseTest.java
src/test/java/org/onap/music/unittests/jsonobjects/JsonOnboardTest.java

index 20ac156..6af8c0d 100644 (file)
@@ -112,6 +112,28 @@ public class JsonResponseTest {
         
     }
     
+    @Test
+    public void testLockLease() {
+       result = new JsonResponse(ResultType.SUCCESS);
+        result.setLockLease("lockLease");
+        assertEquals("lockLease", result.getLockLease());
+    }
+    
+    @Test
+    public void testMusicBuild() {
+       result = new JsonResponse(ResultType.SUCCESS);
+        result.setMusicBuild("Build");
+        assertEquals("Build", result.getMusicBuild());
+    }
+    
+    @Test
+    public void testLockHolder() {
+       result = new JsonResponse(ResultType.SUCCESS);
+       List<String> lockHolders = new ArrayList<>();
+        result.setLockHolder(lockHolders);
+        assertEquals(lockHolders, result.getLockHolder());
+    }
+    
     @Test
     public void testLockStatus() {
         result = new JsonResponse(ResultType.SUCCESS);
index 1e66ed5..f7a1576 100644 (file)
@@ -4,6 +4,8 @@
  * ===================================================================
  *  Copyright (c) 2017 AT&T Intellectual Property
  * ===================================================================
+ *  Modifications Copyright (c) 2019 IBM.
+ * ===================================================================
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
  *  You may obtain a copy of the License at
@@ -19,7 +21,7 @@
  * ============LICENSE_END=============================================
  * ====================================================================
  */
-
 package org.onap.music.unittests.jsonobjects;
 
 import static org.junit.Assert.*;
@@ -75,5 +77,12 @@ public class JsonOnboardTest {
         assertEquals(aaf,jo.getIsAAF());
         
     }
+    
+    @Test
+    public void testKeyspace() {
+        jo.setKeyspace_name("Keyspace");
+        assertEquals("Keyspace",jo.getKeyspace());
+        
+    }
 
 }