AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / logging / EcompErrorCategoryTest.java
index b29cf51..65c7812 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 EcompErrorCategoryTest {
@@ -36,11 +37,12 @@ public class EcompErrorCategoryTest {
     public void setUp() throws Exception {
 
         mockEvent = mock(ILoggingEvent.class);
-        _ecompErrorCategory= spy(EcompErrorCategory.class);
+        _ecompErrorCategory = spy(EcompErrorCategory.class);
 
     }
+
     @Test
-    public void warn(){
+    public void warn() {
         String defaultCategory = "WARN";
         assertEquals(_ecompErrorCategory.convert(mockEvent), defaultCategory);
     }