summaryrefslogtreecommitdiffstats
path: root/asdctool/src/test/java/org/openecomp/sdc/asdctool/servlets/EntryPointTest.java
blob: 217bc3919fa7a9a62327a9d13982ca4b986d8582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.openecomp.sdc.asdctool.servlets;

import org.junit.Test;


public class EntryPointTest {

	private EntryPoint createTestSubject() {
		return new EntryPoint();
	}

	
	@Test
	public void testTest() throws Exception {
		EntryPoint testSubject;
		String result;

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