Rename maven modules to mirror directory structure
[policy/drools-applications.git] / controlloop / common / model-impl / so / src / test / java / org / onap / policy / so / TestSoModelInfo.java
index 99f829f..037e82e 100755 (executable)
@@ -1,69 +1,69 @@
-/*-\r
- * ============LICENSE_START=======================================================\r
- * so\r
- * ================================================================================\r
- * \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
- * ============LICENSE_END=========================================================\r
- */\r
-\r
-package org.onap.policy.so;\r
-\r
-import static org.junit.Assert.assertEquals;\r
-import static org.junit.Assert.assertTrue;\r
-\r
-import org.junit.Test;\r
-\r
-public class TestSoModelInfo {\r
-\r
-    @Test\r
-    public void testConstructor() {\r
-        SOModelInfo obj = new SOModelInfo();\r
-\r
-        assertTrue(obj.getModelCustomizationId() == null);\r
-        assertTrue(obj.getModelCustomizationName() == null);\r
-        assertTrue(obj.getModelInvariantId() == null);\r
-        assertTrue(obj.getModelName() == null);\r
-        assertTrue(obj.getModelType() == null);\r
-        assertTrue(obj.getModelVersion() == null);\r
-        assertTrue(obj.getModelVersionId() == null);\r
-    }\r
-\r
-    @Test\r
-    public void testSetGet() {\r
-        SOModelInfo obj = new SOModelInfo();\r
-\r
-        obj.setModelCustomizationId("modelCustomizationId");\r
-        assertEquals("modelCustomizationId", obj.getModelCustomizationId());\r
-\r
-        obj.setModelCustomizationName("modelCustomizationName");\r
-        assertEquals("modelCustomizationName", obj.getModelCustomizationName());\r
-\r
-        obj.setModelInvariantId("modelInvariantId");\r
-        assertEquals("modelInvariantId", obj.getModelInvariantId());\r
-\r
-        obj.setModelName("modelName");\r
-        assertEquals("modelName", obj.getModelName());\r
-\r
-        obj.setModelType("modelType");\r
-        assertEquals("modelType", obj.getModelType());\r
-\r
-        obj.setModelVersion("modelVersion");\r
-        assertEquals("modelVersion", obj.getModelVersion());\r
-\r
-        obj.setModelVersionId("modelVersionId");\r
-        assertEquals("modelVersionId", obj.getModelVersionId());\r
-\r
-    }\r
-}\r
+/*-
+ * ============LICENSE_START=======================================================
+ * so
+ * ================================================================================
+ * 
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.policy.so;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+public class TestSoModelInfo {
+
+    @Test
+    public void testConstructor() {
+        SOModelInfo obj = new SOModelInfo();
+
+        assertTrue(obj.getModelCustomizationId() == null);
+        assertTrue(obj.getModelCustomizationName() == null);
+        assertTrue(obj.getModelInvariantId() == null);
+        assertTrue(obj.getModelName() == null);
+        assertTrue(obj.getModelType() == null);
+        assertTrue(obj.getModelVersion() == null);
+        assertTrue(obj.getModelVersionId() == null);
+    }
+
+    @Test
+    public void testSetGet() {
+        SOModelInfo obj = new SOModelInfo();
+
+        obj.setModelCustomizationId("modelCustomizationId");
+        assertEquals("modelCustomizationId", obj.getModelCustomizationId());
+
+        obj.setModelCustomizationName("modelCustomizationName");
+        assertEquals("modelCustomizationName", obj.getModelCustomizationName());
+
+        obj.setModelInvariantId("modelInvariantId");
+        assertEquals("modelInvariantId", obj.getModelInvariantId());
+
+        obj.setModelName("modelName");
+        assertEquals("modelName", obj.getModelName());
+
+        obj.setModelType("modelType");
+        assertEquals("modelType", obj.getModelType());
+
+        obj.setModelVersion("modelVersion");
+        assertEquals("modelVersion", obj.getModelVersion());
+
+        obj.setModelVersionId("modelVersionId");
+        assertEquals("modelVersionId", obj.getModelVersionId());
+
+    }
+}