aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/TestNg-ApiTest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'vid-automation/TestNg-ApiTest.xml')
-rw-r--r--vid-automation/TestNg-ApiTest.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/vid-automation/TestNg-ApiTest.xml b/vid-automation/TestNg-ApiTest.xml
index 641f3eba6..e0ca82cb8 100644
--- a/vid-automation/TestNg-ApiTest.xml
+++ b/vid-automation/TestNg-ApiTest.xml
@@ -20,6 +20,10 @@
"underDevelopment"
};
+ String [] testClassesToRunAlways = new String [] {
+ "LoggerFormatTest"
+ };
+
String [] classes1 = new String [] {
"AsyncInstantiationALaCarteApiTest"
};
@@ -34,6 +38,10 @@
if (methodClass.contains("org.onap.vid.api.Base")) return true;
+ for (c: testClassesToRunAlways) {
+ if (methodClass.endsWith(c)) return true; // repeat in any selectPart value
+ }
+
for (c: classes1) {
if (methodClass.endsWith(c)) return selectPart==1;
}