added test case to VmTest.java
[appc.git] / appc-config / appc-flow-controller / provider / src / test / java / org / onap / appc / flow / controller / interfaceData / VmTest.java
index 153892d..401ad07 100644 (file)
@@ -22,6 +22,7 @@
 package org.onap.appc.flow.controller.interfaceData;
 
 import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
 
 import org.junit.Before;
 import org.junit.Test;
@@ -52,4 +53,9 @@ public class VmTest {
         vm.setVmId("VmId");
         assertEquals("VmId", vm.getVmId());
     }
+    
+    @Test
+    public void testToString() {
+        assertTrue(vm.toString() instanceof String);
+    }
 }