package org.openecomp.sdc.be.config; import java.util.Map; import org.junit.Test; public class Neo4jErrorsConfigurationTest { private Neo4jErrorsConfiguration createTestSubject() { return new Neo4jErrorsConfiguration(); } @Test public void testGetErrors() throws Exception { Neo4jErrorsConfiguration testSubject; Map result; // default test testSubject = createTestSubject(); result = testSubject.getErrors(); } @Test public void testSetErrors() throws Exception { Neo4jErrorsConfiguration testSubject; Map errors = null; // default test testSubject = createTestSubject(); testSubject.setErrors(errors); } @Test public void testToString() throws Exception { Neo4jErrorsConfiguration testSubject; String result; // default test testSubject = createTestSubject(); result = testSubject.toString(); } }