summaryrefslogtreecommitdiffstats
path: root/common-be/src/test/java/org/openecomp/sdc/be/datatypes/enums/ConnectionPointEnumTest.java
blob: 0aad06a16da1a4c03adc4f953e8ff3f03afed355 (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
package org.openecomp.sdc.be.datatypes.enums;

import org.junit.Test;

public class ConnectionPointEnumTest {

	private ConnectionPointEnum createTestSubject() {
		return ConnectionPointEnum.CAPABILITY;
	}

	@Test
	public void testToString() throws Exception {
		ConnectionPointEnum testSubject;
		String result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.toString();
	}

	@Test
	public void testGetConnectionPointEnum() throws Exception {
		String data = "";
		ConnectionPointEnum result;

		// default test
		result = ConnectionPointEnum.getConnectionPointEnum(data);
	}
}