Merge "AAFcli.java -Declare "value" on a separate line"
[aaf/authz.git] / auth / auth-locate / src / test / java / org / onap / aaf / auth / locate / api / JU_API_AAFTest.java
index ef8a1dc..c3b964b 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -32,40 +32,40 @@ import org.onap.aaf.auth.locate.facade.LocateFacade;
 
 public class JU_API_AAFTest {
 
-       @Mock(answer = Answers.RETURNS_DEEP_STUBS)
-       private AAF_Locate gwAPI;
-       @Mock(answer = Answers.RETURNS_DEEP_STUBS)
-       private LocateFacade facade;
+    @Mock(answer = Answers.RETURNS_DEEP_STUBS)
+    private AAF_Locate gwAPI;
+    @Mock(answer = Answers.RETURNS_DEEP_STUBS)
+    private LocateFacade facade;
 
-       @Before
-       public void setUp() throws Exception {
-               initMocks(this);
-       }
+    @Before
+    public void setUp() throws Exception {
+        initMocks(this);
+    }
 
-       @Test
-       public void testAPI_AAFAccess() throws Exception {
-               try {
-                       API_AAFAccess.init(gwAPI, facade);
-               } catch (Exception e) {
-                       fail("There should be no exception as Mocks are used");
-               }
-       }
+    @Test
+    public void testAPI_AAFAccess() throws Exception {
+        try {
+            API_AAFAccess.init(gwAPI, facade);
+        } catch (Exception e) {
+            fail("There should be no exception as Mocks are used");
+        }
+    }
 
-       @Test
-       public void testAPI_Find() throws Exception {
-               try {
-                       API_Find.init(gwAPI, facade);
-               } catch (Exception e) {
-                       fail("There should be no exception as Mocks are used");
-               }
-       }
+    @Test
+    public void testAPI_Find() throws Exception {
+        try {
+            API_Find.init(gwAPI, facade);
+        } catch (Exception e) {
+            fail("There should be no exception as Mocks are used");
+        }
+    }
 
-       @Test
-       public void testAPI_API() throws Exception {
-               try {
-                       API_Api.init(gwAPI, facade);
-               } catch (Exception e) {
-                       fail("There should be no exception as Mocks are used");
-               }
-       }
+    @Test
+    public void testAPI_API() throws Exception {
+        try {
+            API_Api.init(gwAPI, facade);
+        } catch (Exception e) {
+            fail("There should be no exception as Mocks are used");
+        }
+    }
 }