X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fesr-server.git;a=blobdiff_plain;f=esr-mgr%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fexternalservice%2Faai%2FExternalSystemProxyTest.java;h=09e6318436c6a278ce0e37ada2691b022927a580;hp=8f7cc92d7d801cd2c99cb7f6514eb2a47c48fa81;hb=ed26992f976741031237ead3a5dc0565d4318b05;hpb=f73ad41f58f1f60d00d42a8bc5fc2502a46d62dd diff --git a/esr-mgr/src/test/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxyTest.java b/esr-mgr/src/test/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxyTest.java index 8f7cc92..09e6318 100644 --- a/esr-mgr/src/test/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxyTest.java +++ b/esr-mgr/src/test/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxyTest.java @@ -34,65 +34,65 @@ public class ExternalSystemProxyTest { } @Test(expected = ExtsysException.class) - public void testRegisterVnfm() throws ExtsysException{ + public void testRegisterVnfm() throws ExtsysException { EsrVnfmDetail detail = new EsrVnfmDetail(); ExternalSystemProxy.registerVnfm("vnfm-1", detail); } @Test(expected = ExtsysException.class) - public void testQueryVnfmDetail() throws ExtsysException{ + public void testQueryVnfmDetail() throws ExtsysException { ExternalSystemProxy.queryVnfmDetail("vnfm-1"); } @Test(expected = ExtsysException.class) - public void testQueryVnfmList() throws ExtsysException{ + public void testQueryVnfmList() throws ExtsysException { ExternalSystemProxy.queryVnfmList(); } @Test(expected = ExtsysException.class) - public void testDeleteVnfm() throws ExtsysException{ + public void testDeleteVnfm() throws ExtsysException { ExternalSystemProxy.deleteVnfm("vnfm-1", "version-1"); } @Test(expected = ExtsysException.class) - public void testRegisterSdnc() throws ExtsysException{ + public void testRegisterSdnc() throws ExtsysException { EsrThirdpartySdncDetail detail = new EsrThirdpartySdncDetail(); ExternalSystemProxy.registerSdnc("sdnc-1", detail); } @Test(expected = ExtsysException.class) - public void testQueryThirdpartySdncDetail() throws ExtsysException{ + public void testQueryThirdpartySdncDetail() throws ExtsysException { ExternalSystemProxy.queryThirdpartySdncDetail("sdnc-1"); } @Test(expected = ExtsysException.class) - public void testQuerySdncList() throws ExtsysException{ + public void testQuerySdncList() throws ExtsysException { ExternalSystemProxy.querySdncList(); } @Test(expected = ExtsysException.class) - public void testDeleteThirdpartySdnc() throws ExtsysException{ + public void testDeleteThirdpartySdnc() throws ExtsysException { ExternalSystemProxy.deleteThirdpartySdnc("sdnc-1", "version-1"); } @Test(expected = ExtsysException.class) - public void testRegisterEms() throws ExtsysException{ + public void testRegisterEms() throws ExtsysException { EsrEmsDetail detail = new EsrEmsDetail(); - ExternalSystemProxy.registerEms("ems-1",detail); + ExternalSystemProxy.registerEms("ems-1", detail); } @Test(expected = ExtsysException.class) - public void testQueryEmsDetail() throws ExtsysException{ + public void testQueryEmsDetail() throws ExtsysException { ExternalSystemProxy.queryEmsDetail("ems-1"); } @Test(expected = ExtsysException.class) - public void testQueryEmsList() throws ExtsysException{ + public void testQueryEmsList() throws ExtsysException { ExternalSystemProxy.queryEmsList(); } @Test(expected = ExtsysException.class) - public void testDeleteEms() throws ExtsysException{ + public void testDeleteEms() throws ExtsysException { ExternalSystemProxy.deleteEms("ems-1", "version-1"); } }