Fix component startup
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / driver / src / test / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nokia / onap / core / TestGenericExternalSystemInfoProvider.java
index efa4523..850579f 100644 (file)
@@ -16,6 +16,7 @@
 
 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core;
 
+import java.util.Set;
 import org.junit.Before;
 import org.junit.Test;
 import org.mockito.Mockito;
@@ -108,6 +109,11 @@ public class TestGenericExternalSystemInfoProvider extends TestBase {
             public VimInfo getVimInfo(String vimId) {
                 return null;
             }
+
+            @Override
+            public Set<String> getVnfms() {
+                return null;
+            }
         }
         try {
             new TestClass(null).getVnfmInfo(VNFM_ID);
@@ -133,5 +139,10 @@ public class TestGenericExternalSystemInfoProvider extends TestBase {
         public VimInfo getVimInfo(String vimId) {
             return null;
         }
+
+        @Override
+        public Set<String> getVnfms() {
+            return null;
+        }
     }
 }