Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-cass / src / test / java / org / onap / aaf / auth / dao / aaf / test / JU_NsType.java
index 06e5f0e..38d0fbf 100644 (file)
@@ -29,30 +29,30 @@ import org.onap.aaf.auth.dao.cass.NsType;
 
 public class JU_NsType {
 
-       @AfterClass
-       public static void tearDownAfterClass() throws Exception {
-       }
+    @AfterClass
+    public static void tearDownAfterClass() throws Exception {
+    }
 
-       @Test
-       public void test() {
-               NsType nt,nt2;
-               String[] tests = new String[] {"DOT","ROOT","COMPANY","APP","STACKED_APP","STACK"};
-               for(String s : tests) {
-                       nt = NsType.valueOf(s);
-                       assertEquals(s,nt.name());
-                       
-                       nt2 = NsType.fromString(s);
-                       assertEquals(nt,nt2);
-                       
-                       int t = nt.type;
-                       nt2 = NsType.fromType(t);
-                       assertEquals(nt,nt2);
-               }
-               
-               nt  = NsType.fromType(Integer.MIN_VALUE);
-               assertEquals(nt,NsType.UNKNOWN);
-               nt = NsType.fromString("Garbage");
-               assertEquals(nt,NsType.UNKNOWN);
-       }
+    @Test
+    public void test() {
+        NsType nt,nt2;
+        String[] tests = new String[] {"DOT","ROOT","COMPANY","APP","STACKED_APP","STACK"};
+        for(String s : tests) {
+            nt = NsType.valueOf(s);
+            assertEquals(s,nt.name());
+            
+            nt2 = NsType.fromString(s);
+            assertEquals(nt,nt2);
+            
+            int t = nt.type;
+            nt2 = NsType.fromType(t);
+            assertEquals(nt,nt2);
+        }
+        
+        nt  = NsType.fromType(Integer.MIN_VALUE);
+        assertEquals(nt,NsType.UNKNOWN);
+        nt = NsType.fromString("Garbage");
+        assertEquals(nt,NsType.UNKNOWN);
+    }
 
 }