Refactoring Consolidation Service
[sdc.git] / common-app-api / src / test / java / org / openecomp / sdc / be / config / Neo4jErrorsConfigurationTest.java
1 package org.openecomp.sdc.be.config;
2
3 import java.util.Map;
4
5 import org.junit.Test;
6
7
8 public class Neo4jErrorsConfigurationTest {
9
10         private Neo4jErrorsConfiguration createTestSubject() {
11                 return new Neo4jErrorsConfiguration();
12         }
13
14         
15         @Test
16         public void testGetErrors() throws Exception {
17                 Neo4jErrorsConfiguration testSubject;
18                 Map<String, String> result;
19
20                 // default test
21                 testSubject = createTestSubject();
22                 result = testSubject.getErrors();
23         }
24
25         
26         @Test
27         public void testSetErrors() throws Exception {
28                 Neo4jErrorsConfiguration testSubject;
29                 Map<String, String> errors = null;
30
31                 // default test
32                 testSubject = createTestSubject();
33                 testSubject.setErrors(errors);
34         }
35
36         
37
38
39         
40         @Test
41         public void testToString() throws Exception {
42                 Neo4jErrorsConfiguration testSubject;
43                 String result;
44
45                 // default test
46                 testSubject = createTestSubject();
47                 result = testSubject.toString();
48         }
49 }