Add tests to VnfApiProvider part 4
[sdnc/northbound.git] / vnfapi / provider / src / test / java / org / onap / sdnc / vnfapi / VnfApiProviderTest.java
index c74ce53..458e6d4 100644 (file)
@@ -36,25 +36,23 @@ import org.slf4j.LoggerFactory;
 
 public class VnfApiProviderTest extends AbstractConcurrentDataBrokerTest {
 
-    protected vnfapiProvider vnfapiProvider;
+    protected VnfApiProvider vnfapiProvider;
     protected DataBroker dataBroker;
     protected @Mock NotificationPublishService mockNotificationPublishService;
     protected @Mock RpcProviderRegistry mockRpcProviderRegistry;
     protected @Mock VNFSDNSvcLogicServiceClient mockVNFSDNSvcLogicServiceClient;
-    protected static final Logger LOG = LoggerFactory.getLogger(vnfapiProvider.class);
-
+    protected static final Logger LOG = LoggerFactory.getLogger(VnfApiProvider.class);
 
     protected DataBrokerUtil db;
     protected VNFSDNSvcLogicServiceClientMockUtil svcClient;
 
-
     @Before
     public void setUp() throws Exception {
         svcClient = new VNFSDNSvcLogicServiceClientMockUtil(mockVNFSDNSvcLogicServiceClient);
         dataBroker = getDataBroker();
         db = new DataBrokerUtil(dataBroker);
          try {
-            vnfapiProvider = new vnfapiProvider(
+            vnfapiProvider = new VnfApiProvider(
                     dataBroker,
                     mockNotificationPublishService,
                     mockRpcProviderRegistry,
@@ -66,10 +64,7 @@ public class VnfApiProviderTest extends AbstractConcurrentDataBrokerTest {
         }
     }
 
-
     public static PropBuilder prop(){
         return (new PropBuilder());
     }
-
-
-}
+ }
\ No newline at end of file