aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/testUtils
diff options
context:
space:
mode:
authorIttay Stern <ittay.stern@att.com>2019-12-18 12:56:02 +0200
committerIttay Stern <ittay.stern@att.com>2019-12-18 13:30:35 +0200
commit50f08102564af0938a66071af6c1d1fbf6667943 (patch)
tree866689e98821af2d84df33ca0725d64ebcf77a1f /vid-app-common/src/test/java/org/onap/vid/testUtils
parentb9d4788fc441a516e4bdbeef54982362354944da (diff)
Restore the reference instance of Upgrade's test
Restored file upgrade_vfmodule_e2e__service_instance, and adjust upgrade_vfmodule_e2e__fe_input_cypress accordingly. Also hardening MsoRequestBuilderTest to check for every true/false/null Boolean option. Issue-ID: VID-603 Change-Id: Ib82afcecaa57cb06896f7175d48aa8d6a314fdfa Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/testUtils')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/testUtils/TestUtils.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/testUtils/TestUtils.java b/vid-app-common/src/test/java/org/onap/vid/testUtils/TestUtils.java
index 857221a2a..862b8db8f 100644
--- a/vid-app-common/src/test/java/org/onap/vid/testUtils/TestUtils.java
+++ b/vid-app-common/src/test/java/org/onap/vid/testUtils/TestUtils.java
@@ -389,4 +389,9 @@ public class TestUtils {
return new Object[][]{{true}, {false}};
}
+ @DataProvider
+ public static Object[][] trueAndFalseAndNull() {
+ return new Boolean[][]{{Boolean.TRUE}, {Boolean.FALSE}, {null}};
+ }
+
}