Update adaptors to sodium
[ccsdk/sli/adaptors.git] / aai-service / provider / src / test / java / org / onap / ccsdk / sli / adaptors / aai / AAIClientRESTExecutorTest.java
index b0272f5..f60b2da 100644 (file)
@@ -11,6 +11,8 @@ import static org.junit.Assert.assertNotNull;
 public class AAIClientRESTExecutorTest {
 
     private static AAIClientRESTExecutor aaiExecute;
+    private static AAIService aaiService;
+
     @BeforeClass
     public static void setUpBeforeClass() throws Exception {
         Properties properties = new Properties();
@@ -22,6 +24,7 @@ public class AAIClientRESTExecutorTest {
         properties.setProperty("connection.timeout", "60000");
         properties.setProperty("read.timeout", "60000");
         aaiExecute = new AAIClientRESTExecutor(properties);
+        aaiService = new AAIService(properties);
 
 
     }