AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / logging / EcompResponseCodeTest.java
index 10edb45..8319f9a 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.logging;
 
 import static org.junit.Assert.*;
 import static org.mockito.Mockito.*;
 
 import ch.qos.logback.classic.Level;
-
 import ch.qos.logback.classic.spi.ILoggingEvent;
+
 import org.junit.*;
 
 public class EcompResponseCodeTest {
@@ -36,11 +37,12 @@ public class EcompResponseCodeTest {
     public void setUp() throws Exception {
 
         mockEvent = mock(ILoggingEvent.class);
-        _ecompResponseCode= spy(EcompResponseCode.class);
+        _ecompResponseCode = spy(EcompResponseCode.class);
 
     }
+
     @Test
-    public void getDefaultCode(){
+    public void getDefaultCode() {
         assertEquals(_ecompResponseCode.convert(mockEvent), LoggingContext.UNKNOWN_ERROR);
     }