aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/common/config/EcompErrorConfigurationTest.java
blob: 7ebe341b9cce7b052f54ced7a823634367206fe2 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package org.openecomp.sdc.common.config;

import java.util.Map;

import javax.annotation.Generated;

import org.junit.Assert;
import org.junit.Test;


public class EcompErrorConfigurationTest {

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

	
	@Test
	public void testGetErrors() throws Exception {
		EcompErrorConfiguration testSubject;
		Map<String, EcompErrorInfo> result;

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

	
	
	@Test
	public void testGetEcompErrorInfo() throws Exception {
		EcompErrorConfiguration testSubject;
		String key = "";
		EcompErrorInfo result;

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

	

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

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

	
	@Test
	public void testMain() throws Exception {
		String[] args = new String[] { "" };

		// default test
		EcompErrorConfiguration.main(args);
	}
}