aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/switchover/detector/SwitchoverDetectorTest.java
blob: 0562a1a80c7f313f7fbced6e7c6850e35c5cb031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package org.openecomp.sdc.be.switchover.detector;

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);
	}

	

}