From 77dddd871421b1de8d92dd76e2a1b237cb00b50f Mon Sep 17 00:00:00 2001 From: sonicke <10112215@zte.com.cn> Date: Tue, 26 Feb 2019 15:27:16 +0800 Subject: add unit test Issue-ID: VFC-1264 Change-Id: I719d9ce24864ef37f64370cc4ff9dd09c9f6299b Signed-off-by: Zhuoyao Huang <10112215@zte.com.cn> --- .../test/java/org/onap/sfc/entity/ResultTest.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/ResultTest.java') 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 -- cgit 1.2.3-korg