X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=zte%2Fsfc-driver%2Fsfc-driver%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Fsfc%2Fentity%2FResultTest.java;fp=zte%2Fsfc-driver%2Fsfc-driver%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Fsfc%2Fentity%2FResultTest.java;h=c74424b3fae47ad9ea9c343f94fad04894803703;hb=77dddd871421b1de8d92dd76e2a1b237cb00b50f;hp=4dc0209547d6e4b88719474f96b04999faa1808c;hpb=3062ee6e0b4ed88c5a3b10ebf8188341c5b92987;p=vfc%2Fnfvo%2Fdriver%2Fsfc.git diff --git a/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/ResultTest.java b/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/ResultTest.java index 4dc0209..c74424b 100644 --- a/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/ResultTest.java +++ b/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/ResultTest.java @@ -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