summaryrefslogtreecommitdiffstats
path: root/esr-mgr/src/test
diff options
context:
space:
mode:
authorLizi <li.zi30@zte.com.cn>2018-01-25 11:57:36 +0000
committerLizi <li.zi30@zte.com.cn>2018-01-25 11:57:47 +0000
commita9c5b27687df9f1d72c58fa64899b6783f6aef5a (patch)
treed38fff1e67868c650109910916bb3b2000b3e969 /esr-mgr/src/test
parent0d6ba27cdb051f6883687ace5d4d5f4b77ff0a85 (diff)
Change the static method to unstatic.
Change-Id: I47926c5de4d89f203866de663e74f3cec026959d Issue-ID: AAI-638 Signed-off-by: Lizi <li.zi30@zte.com.cn>
Diffstat (limited to 'esr-mgr/src/test')
-rw-r--r--esr-mgr/src/test/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxyTest.java24
1 files changed, 12 insertions, 12 deletions
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 09e6318..da5d27e 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
@@ -36,63 +36,63 @@ public class ExternalSystemProxyTest {
@Test(expected = ExtsysException.class)
public void testRegisterVnfm() throws ExtsysException {
EsrVnfmDetail detail = new EsrVnfmDetail();
- ExternalSystemProxy.registerVnfm("vnfm-1", detail);
+ externalSystemProxy.registerVnfm("vnfm-1", detail);
}
@Test(expected = ExtsysException.class)
public void testQueryVnfmDetail() throws ExtsysException {
- ExternalSystemProxy.queryVnfmDetail("vnfm-1");
+ externalSystemProxy.queryVnfmDetail("vnfm-1");
}
@Test(expected = ExtsysException.class)
public void testQueryVnfmList() throws ExtsysException {
- ExternalSystemProxy.queryVnfmList();
+ externalSystemProxy.queryVnfmList();
}
@Test(expected = ExtsysException.class)
public void testDeleteVnfm() throws ExtsysException {
- ExternalSystemProxy.deleteVnfm("vnfm-1", "version-1");
+ externalSystemProxy.deleteVnfm("vnfm-1", "version-1");
}
@Test(expected = ExtsysException.class)
public void testRegisterSdnc() throws ExtsysException {
EsrThirdpartySdncDetail detail = new EsrThirdpartySdncDetail();
- ExternalSystemProxy.registerSdnc("sdnc-1", detail);
+ externalSystemProxy.registerSdnc("sdnc-1", detail);
}
@Test(expected = ExtsysException.class)
public void testQueryThirdpartySdncDetail() throws ExtsysException {
- ExternalSystemProxy.queryThirdpartySdncDetail("sdnc-1");
+ externalSystemProxy.queryThirdpartySdncDetail("sdnc-1");
}
@Test(expected = ExtsysException.class)
public void testQuerySdncList() throws ExtsysException {
- ExternalSystemProxy.querySdncList();
+ externalSystemProxy.querySdncList();
}
@Test(expected = ExtsysException.class)
public void testDeleteThirdpartySdnc() throws ExtsysException {
- ExternalSystemProxy.deleteThirdpartySdnc("sdnc-1", "version-1");
+ externalSystemProxy.deleteThirdpartySdnc("sdnc-1", "version-1");
}
@Test(expected = ExtsysException.class)
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 {
- ExternalSystemProxy.queryEmsDetail("ems-1");
+ externalSystemProxy.queryEmsDetail("ems-1");
}
@Test(expected = ExtsysException.class)
public void testQueryEmsList() throws ExtsysException {
- ExternalSystemProxy.queryEmsList();
+ externalSystemProxy.queryEmsList();
}
@Test(expected = ExtsysException.class)
public void testDeleteEms() throws ExtsysException {
- ExternalSystemProxy.deleteEms("ems-1", "version-1");
+ externalSystemProxy.deleteEms("ems-1", "version-1");
}
}