Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-els-onap-logging / src / test / java / org / onap / aai / util / AAIConfigTest.java
index 86d6c20..dad8c35 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.util;
 
+import static org.junit.Assert.*;
+
 import org.junit.Before;
 import org.junit.Test;
 import org.onap.aai.exceptions.AAIException;
 
-import static org.junit.Assert.*;
-
 public class AAIConfigTest {
 
     @Before
@@ -43,6 +44,7 @@ public class AAIConfigTest {
     public void getValueTest() throws AAIException {
         assertEquals("10", AAIConfig.get("aai.logging.maxStackTraceEntries"));
     }
+
     @Test
     public void getIntValueTest() throws AAIException {
         assertTrue(10 == AAIConfig.getInt("aai.logging.maxStackTraceEntries"));