add unit test
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / test / java / org / onap / sfc / entity / ResultTest.java
index 4dc0209..c74424b 100644 (file)
@@ -1,5 +1,6 @@
 package org.onap.sfc.entity;
 
+import org.junit.Before;
 import org.junit.Test;
 
 /**
@@ -18,6 +19,15 @@ import org.junit.Test;
  * limitations under the License.
  */
 public class ResultTest {
+    Result entity1;
+    Result entity2;
+
+    @Before
+    public void setUp() throws Exception {
+        entity1 = new Result("");
+        entity2 = new Result("");
+    }
+
     @Test
     public void getId() throws Exception {
         String uuid = "123";
@@ -25,4 +35,14 @@ public class ResultTest {
         assert result.getId().equals(uuid);
     }
 
+    @Test
+    public void equals() throws Exception {
+        assert !entity2.equals(entity1);
+        assert entity2.equals(entity2);
+    }
+
+    @Test
+    public void toStringTest() throws Exception {
+        assert entity2.toString() != null;
+    }
 }
\ No newline at end of file