add more unit tests remove imports
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / switchover / detector / SwitchoverDetectorTest.java
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/switchover/detector/SwitchoverDetectorTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/switchover/detector/SwitchoverDetectorTest.java
new file mode 100644 (file)
index 0000000..f93819c
--- /dev/null
@@ -0,0 +1,38 @@
+package org.openecomp.sdc.be.switchover.detector;
+
+import javax.annotation.Generated;
+
+import org.junit.Test;
+
+
+public class SwitchoverDetectorTest {
+
+       private SwitchoverDetector createTestSubject() {
+               return new SwitchoverDetector();
+       }
+
+       
+       @Test
+       public void testGetSiteMode() throws Exception {
+               SwitchoverDetector testSubject;
+               String result;
+
+               // default test
+               testSubject = createTestSubject();
+               result = testSubject.getSiteMode();
+       }
+
+       
+       @Test
+       public void testSetSiteMode() throws Exception {
+               SwitchoverDetector testSubject;
+               String mode = "";
+
+               // default test
+               testSubject = createTestSubject();
+               testSubject.setSiteMode(mode);
+       }
+
+       
+
+}
\ No newline at end of file