AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / introspection / tools / RemoveNonVisiblePropertyTest.java
index cf1b778..a3380ee 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.introspection.tools;
 
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+
 import org.junit.Before;
 import org.junit.Test;
 import org.onap.aai.AAISetup;
@@ -26,10 +31,6 @@ import org.onap.aai.introspection.*;
 import org.onap.aai.introspection.exceptions.AAIUnknownObjectException;
 import org.springframework.test.annotation.DirtiesContext;
 
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertTrue;
-import static org.junit.Assert.assertNull;
-
 @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
 public class RemoveNonVisiblePropertyTest extends AAISetup {
 
@@ -38,7 +39,7 @@ public class RemoveNonVisiblePropertyTest extends AAISetup {
     private RemoveNonVisibleProperty rn;
 
     @Before
-    public void setup(){
+    public void setup() {
         rn = new RemoveNonVisibleProperty();
         loader = loaderFactory.createLoaderForVersion(ModelType.MOXY, schemaVersions.getDefaultVersion());
     }
@@ -66,5 +67,4 @@ public class RemoveNonVisiblePropertyTest extends AAISetup {
         assertFalse("Nonvisible property not present so should not have been removed", rn.resolveIssue(issue));
     }
 
-
 }