Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-certman / src / test / java / org / onap / aaf / auth / cm / cert / JU_BCFactory.java
index 337bc9e..eae3764 100644 (file)
@@ -47,82 +47,82 @@ import org.onap.aaf.misc.env.Trans;
 
 @RunWith(MockitoJUnitRunner.class)
 public class JU_BCFactory {
-       
-       private static BCFactory bcFactory = new BCFactory();
-       
-       private static BCFactory bcFact;
-       
-       private static PrivateKey pk;
-       
-       
-       private static Trans trans;
-       
-       
-       private static PKCS10CertificationRequest req;
-       
-       @BeforeClass
-       public static void setUp() throws IOException {
-               pk = new XYZKey();
-               trans = mock(Trans.class);
-               req = mock(PKCS10CertificationRequest.class);
-               when(req.getEncoded()).thenReturn(new byte[1]);
-               when(trans.start(Mockito.anyString(), Mockito.anyInt())).thenReturn(new TimeTaken(null, 0) {
-                       
-                       @Override
-                       public void output(StringBuilder sb) {
-                               // TODO Auto-generated method stub
-                               
-                       }
-               });
-               bcFact = mock(BCFactory.class);
-       }
-       
-       @Test
-       public void toStrin() throws OperatorCreationException, IOException, CertException {
-               assertNotNull(bcFactory.toString(req));
-       }
-       
-       @Test
-       public void toStrinMoc() throws OperatorCreationException, IOException, CertException {
-               assertNotNull(bcFact.toString(req));
-       }
-       
-       @Rule
+    
+    private static BCFactory bcFactory = new BCFactory();
+    
+    private static BCFactory bcFact;
+    
+    private static PrivateKey pk;
+    
+    
+    private static Trans trans;
+    
+    
+    private static PKCS10CertificationRequest req;
+    
+    @BeforeClass
+    public static void setUp() throws IOException {
+        pk = new XYZKey();
+        trans = mock(Trans.class);
+        req = mock(PKCS10CertificationRequest.class);
+        when(req.getEncoded()).thenReturn(new byte[1]);
+        when(trans.start(Mockito.anyString(), Mockito.anyInt())).thenReturn(new TimeTaken(null, 0) {
+            
+            @Override
+            public void output(StringBuilder sb) {
+                // TODO Auto-generated method stub
+                
+            }
+        });
+        bcFact = mock(BCFactory.class);
+    }
+    
+    @Test
+    public void toStrin() throws OperatorCreationException, IOException, CertException {
+        assertNotNull(bcFactory.toString(req));
+    }
+    
+    @Test
+    public void toStrinMoc() throws OperatorCreationException, IOException, CertException {
+        assertNotNull(bcFact.toString(req));
+    }
+    
+    @Rule
     public ExpectedException thrown= ExpectedException.none();
-       
-       @Test
-       public void toCSR()  {
-               try {
-                       assertNotNull(bcFactory.toCSR(trans, new File("/random/path")));
-                       thrown.expect(FileNotFoundException.class);
-               } catch (IOException e) {
-                       
-                       e.printStackTrace();
-               }
-       }
-       
+    
+    @Test
+    public void toCSR()  {
+        try {
+            assertNotNull(bcFactory.toCSR(trans, new File("/random/path")));
+            thrown.expect(FileNotFoundException.class);
+        } catch (IOException e) {
+            
+            e.printStackTrace();
+        }
+    }
+    
 }
 
 class XYZKey implements Key, PublicKey, PrivateKey {
-       
-       int rotValue;
-       public XYZKey() {
-               rotValue = 1200213;
-       }
-       public String getAlgorithm() {
-               return "XYZ";
-       }
+    
+    int rotValue;
+    public XYZKey() {
+        rotValue = 1200213;
+    }
+    public String getAlgorithm() {
+        return "XYZ";
+    }
 
-       public String getFormat() {
-               return "XYZ Special Format";
-       }
+    public String getFormat() {
+        return "XYZ Special Format";
+    }
 
-       public byte[] getEncoded() {
-               byte b[] = new byte[4];
-               b[3] = (byte) ((rotValue << 24) & 0xff);
-               b[2] = (byte) ((rotValue << 16) & 0xff);
-               b[1] = (byte) ((rotValue << 8) & 0xff);
-               b[0] = (byte) ((rotValue << 0) & 0xff);
-               return b;
-       }
+    public byte[] getEncoded() {
+        byte b[] = new byte[4];
+        b[3] = (byte) ((rotValue << 24) & 0xff);
+        b[2] = (byte) ((rotValue << 16) & 0xff);
+        b[1] = (byte) ((rotValue << 8) & 0xff);
+        b[0] = (byte) ((rotValue << 0) & 0xff);
+        return b;
+    }
 }