AafTopicSetupService aaf cleanup implementation
[dmaap/dbcapi.git] / src / test / java / org / onap / dmaap / dbcapi / service / ApiServiceTest.java
index e429fbd..dccfadf 100644 (file)
  * ============LICENSE_END=========================================================
  */
 package org.onap.dmaap.dbcapi.service;
-import  org.onap.dmaap.dbcapi.model.*;
-import  org.onap.dmaap.dbcapi.aaf.*;
-import org.onap.dmaap.dbcapi.resources.*;
-import org.onap.dmaap.dbcapi.aaf.authentication.AuthenticationErrorException;
 
-import static org.junit.Assert.*;
+import org.onap.dmaap.dbcapi.authentication.AuthenticationErrorException;
+import org.onap.dmaap.dbcapi.resources.*;
+import org.onap.dmaap.dbcapi.testframework.ReflectionHarness;
 
 import org.junit.After;
 import org.junit.Before;
 import org.junit.Test;
-import java.util.List;
-import javax.ws.rs.core.Response;
 
 public class ApiServiceTest {
 
@@ -53,8 +49,8 @@ public class ApiServiceTest {
        public void test1() {
 
 
-               //rh.reflect( "org.onap.dmaap.dbcapi.service.ApiService", "get", null );        
-       
+               //rh.reflect( "org.onap.dmaap.dbcapi.service.ApiService", "get", null );
+
        }
 
        @Test
@@ -63,28 +59,4 @@ public class ApiServiceTest {
                rh.reflect( "org.onap.dmaap.dbcapi.service.ApiService", "set", v );
 
        }
-
-       @Test
-       public void test3() {
-               ApiService nd = new ApiService();
-               nd.setAuth( "auth" );
-               try {
-                       nd.required( "aName", null, "anExpr" );
-               } catch ( RequiredFieldException rfe ) {
-               }
-               String out = nd.toString();     
-               Response r = nd.unauthorized( "aMessage" );
-               r = nd.unauthorized();
-               r = nd.unavailable();
-               r = nd.notFound();
-               r = nd.error();
-               try {
-                       nd.checkAuthorization( "authval", "/uri/Path", "GET" );
-                       nd.checkAuthorization();
-               } catch ( AuthenticationErrorException aee ) {
-               } catch ( Exception e ) {
-               }
-       }
-
-
 }