aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'vid-automation/src/main')
-rw-r--r--vid-automation/src/main/java/vid/automation/test/test/AssociatePnfTest.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/vid-automation/src/main/java/vid/automation/test/test/AssociatePnfTest.java b/vid-automation/src/main/java/vid/automation/test/test/AssociatePnfTest.java
index 7bec56013..03d7d4a47 100644
--- a/vid-automation/src/main/java/vid/automation/test/test/AssociatePnfTest.java
+++ b/vid-automation/src/main/java/vid/automation/test/test/AssociatePnfTest.java
@@ -56,6 +56,7 @@ public class AssociatePnfTest extends VidBaseTestCase {
vidBasePage.assertMsoRequestModal("Error");
vidBasePage.clickCloseButton();
}
+
@Test
public void testRainyChoosePnf() throws Exception {
SimulatorApi.clearAll();
@@ -70,6 +71,7 @@ public class AssociatePnfTest extends VidBaseTestCase {
boolean waitForElementResult = Wait.waitByTestId(Constants.ViewEdit.VNF_OPTION_TEST_ID_PREFIX + pnfName, 60);
Assert.assertTrue(message, !waitForElementResult);
}
+
@Test
public void testRainySearchPnfInstance() throws Exception {
SimulatorApi.clearAll();
@@ -98,6 +100,7 @@ public class AssociatePnfTest extends VidBaseTestCase {
}
GeneralUIUtils.ultimateWait();
}
+
private void associatePNF() throws InterruptedException {
pnfSearchAssociationPage.clickAssociateButton();
}
@@ -118,6 +121,7 @@ public class AssociatePnfTest extends VidBaseTestCase {
Wait.angularHttpRequestsLoaded();
assertAssociateButtonState(true);
}
+
private void checkServiceModelInfo() {
Wait.angularHttpRequestsLoaded();
//Service name
@@ -188,7 +192,4 @@ public class AssociatePnfTest extends VidBaseTestCase {
infoItemText = GeneralUIUtils.getWebElementByTestID(elementTestId, 60).getText();
Assert.assertEquals(String.format(Constants.PnfAssociation.PNF_INSTANCE_ERROR_MESSAGE,elementTestId),infoItemText,"ASR1002-X");
}
-
-
-
}