AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / logging / CustomLogPatternLayoutTest.java
index 198bb06..dce34b5 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.logging;
 
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
 import org.junit.Test;
 import org.onap.aai.logging.CNName;
 import org.onap.aai.logging.CustomLogPatternLayout;
 
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertTrue;
-
 public class CustomLogPatternLayoutTest {
-    
+
     /**
      * Test null when defaultConverterMap doesn't have corresponding entry.
      */
     @Test
-    public void testNull(){
+    public void testNull() {
         String s = CustomLogPatternLayout.defaultConverterMap.get("z");
         assertFalse("Entry not found for key 'z'", CNName.class.getName().equals(s));
     }
-    
+
     /**
      * Test defaultConverterMap when valid entry exists.
      */
     @Test
-    public void testEntryFor_Z(){
+    public void testEntryFor_Z() {
         CustomLogPatternLayout layout = new CustomLogPatternLayout();
         String s = CustomLogPatternLayout.defaultConverterMap.get("z");
         assertTrue("Entry not found for key 'z'", CNName.class.getName().equals(s));