Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-aaf-auth / src / test / java / org / onap / aai / aaf / filters / CadiPropsTest.java
index c3973b1..601b829 100644 (file)
  *
  *
  */
-package org.onap.aai.aaf.filters;
-
-import org.junit.BeforeClass;
-import org.junit.Test;
-import org.onap.aai.exceptions.AAIException;
-import org.onap.aai.util.AAIConfig;
-import org.springframework.beans.factory.annotation.Autowired;
 
-import java.io.IOException;
+package org.onap.aai.aaf.filters;
 
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
 
+import org.junit.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+
 public class CadiPropsTest {
     @Autowired
-    CadiProps ca =new CadiProps("src/test/resources/bundleconfig-local/aaf/org.onap.aai.props");
+    CadiProps ca = new CadiProps("src/test/resources/bundleconfig-local/aaf/org.onap.aai.props");
 
     @Test
-    public void testGetCadiFileName(){
-        assertEquals(ca.getCadiFileName(),"src/test/resources/bundleconfig-local/aaf/org.onap.aai.props");
+    public void testGetCadiFileName() {
+        assertEquals(ca.getCadiFileName(), "src/test/resources/bundleconfig-local/aaf/org.onap.aai.props");
         assertNotNull(ca.getCadiProperties());
     }
 }