added svcapi ui and camunda code
[it/otf.git] / otf-service-api / src / test / java / org / oran / otf / api / tests / unit / models / local / HeadResultTest.java
diff --git a/otf-service-api/src/test/java/org/oran/otf/api/tests/unit/models/local/HeadResultTest.java b/otf-service-api/src/test/java/org/oran/otf/api/tests/unit/models/local/HeadResultTest.java
new file mode 100644 (file)
index 0000000..1fde494
--- /dev/null
@@ -0,0 +1,60 @@
+/*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
+#                                                                              #\r
+#   Licensed under the Apache License, Version 2.0 (the "License");            #\r
+#   you may not use this file except in compliance with the License.           #\r
+#   You may obtain a copy of the License at                                    #\r
+#                                                                              #\r
+#       http://www.apache.org/licenses/LICENSE-2.0                             #\r
+#                                                                              #\r
+#   Unless required by applicable law or agreed to in writing, software        #\r
+#   distributed under the License is distributed on an "AS IS" BASIS,          #\r
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
+#   See the License for the specific language governing permissions and        #\r
+#   limitations under the License.                                             #\r
+##############################################################################*/\r
+\r
+\r
+package org.oran.otf.api.tests.unit.models.local;\r
+\r
+import org.oran.otf.common.model.local.TestHeadResult;\r
+import org.assertj.core.api.Assertions;\r
+import org.junit.BeforeClass;\r
+import org.junit.Test;\r
+\r
+public class HeadResultTest {\r
+  private static TestHeadResult testHeadResult;\r
+\r
+  @BeforeClass\r
+  public static void setup(){\r
+    testHeadResult = new TestHeadResult();\r
+  }\r
+  @Test\r
+  public void testHeadResultHasTestHeadIdField(){\r
+    Assertions.assertThat(testHeadResult).hasFieldOrProperty("testHeadId");\r
+  }\r
+  @Test\r
+  public void testHeadResultHasTestHeadNameField(){\r
+    Assertions.assertThat(testHeadResult).hasFieldOrProperty("testHeadName");\r
+  }\r
+  @Test\r
+  public void testHeadResultHasBpmnVthTaskIdField(){\r
+    Assertions.assertThat(testHeadResult).hasFieldOrProperty("bpmnVthTaskId");\r
+  }\r
+  @Test\r
+  public void testHeadResultHasTestHeadRequestField(){\r
+    Assertions.assertThat(testHeadResult).hasFieldOrProperty("testHeadRequest");\r
+  }\r
+  @Test\r
+  public void testHeadResultHasTestHeadResponseField(){\r
+    Assertions.assertThat(testHeadResult).hasFieldOrProperty("testHeadResponse");\r
+  }\r
+  @Test\r
+  public void testHeadResultHasStartTimeField(){\r
+    Assertions.assertThat(testHeadResult).hasFieldOrProperty("startTime");\r
+  }\r
+  @Test\r
+  public void testHeadResultHasEndTimeField(){\r
+    Assertions.assertThat(testHeadResult).hasFieldOrProperty("endTime");\r
+  }\r
+\r
+}\r