summaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/common/listener/AppContextListenerTest.java
blob: a9936adae5dcf016de375bfe0209b01e6e922b17 (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
37
38
39
40
41
42
43
package org.openecomp.sdc.common.listener;

import java.util.Map;

import javax.annotation.Generated;
import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;

import org.junit.Test;


public class AppContextListenerTest {

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

	


	
	@Test
	public void testContextDestroyed() throws Exception {
		AppContextListener testSubject;
		ServletContextEvent context = null;

		// default test
		testSubject = createTestSubject();
		testSubject.contextDestroyed(context);
	}



	
//	@Test
	public void testGetManifestInfo() throws Exception {
		ServletContext application = null;
		Map<String, String> result;

		// default test
		result = AppContextListener.getManifestInfo(application);
	}
}