summaryrefslogtreecommitdiffstats
path: root/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/ResultTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/ResultTest.java')
-rw-r--r--zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/ResultTest.java20
1 files changed, 20 insertions, 0 deletions
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