summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/PointTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-model/src/test/java/org/openecomp/sdc/be/model/PointTest.java')
-rw-r--r--catalog-model/src/test/java/org/openecomp/sdc/be/model/PointTest.java68
1 files changed, 68 insertions, 0 deletions
diff --git a/catalog-model/src/test/java/org/openecomp/sdc/be/model/PointTest.java b/catalog-model/src/test/java/org/openecomp/sdc/be/model/PointTest.java
new file mode 100644
index 0000000000..8f25cfd5e4
--- /dev/null
+++ b/catalog-model/src/test/java/org/openecomp/sdc/be/model/PointTest.java
@@ -0,0 +1,68 @@
+package org.openecomp.sdc.be.model;
+
+import javax.annotation.Generated;
+
+import org.junit.Test;
+
+
+public class PointTest {
+
+ private Point createTestSubject() {
+ return new Point();
+ }
+
+
+ @Test
+ public void testGetX() throws Exception {
+ Point testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getX();
+ }
+
+
+ @Test
+ public void testSetX() throws Exception {
+ Point testSubject;
+ String x = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setX(x);
+ }
+
+
+ @Test
+ public void testGetY() throws Exception {
+ Point testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getY();
+ }
+
+
+ @Test
+ public void testSetY() throws Exception {
+ Point testSubject;
+ String y = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setY(y);
+ }
+
+
+ @Test
+ public void testToString() throws Exception {
+ Point testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.toString();
+ }
+} \ No newline at end of file