Raise JUnit coverage catalog-fe
[sdc.git] / catalog-fe / src / test / java / org / openecomp / sdc / fe / utils / BeProtocolTest.java
1 package org.openecomp.sdc.fe.utils;
2
3 import org.junit.Test;
4
5 public class BeProtocolTest {
6
7         private BeProtocol createTestSubject() {
8                 return BeProtocol.HTTP;
9         }
10
11         @Test
12         public void testGetProtocolName() throws Exception {
13                 BeProtocol testSubject;
14                 String result;
15
16                 // default test
17                 testSubject = createTestSubject();
18                 result = testSubject.getProtocolName();
19         }
20 }