aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe/src/test/java/org/openecomp/sdc/fe/utils/BeProtocolTest.java
blob: 7899996ffe2b6b4b6eb733bbe5241b62963ad04d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.openecomp.sdc.fe.utils;

import org.junit.Test;

public class BeProtocolTest {

	private BeProtocol createTestSubject() {
		return BeProtocol.HTTP;
	}

	@Test
	public void testGetProtocolName() throws Exception {
		BeProtocol testSubject;
		String result;

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