X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=vid-automation%2FTestNg-ApiTest.xml;h=e0ca82cb856c2b4af467bf8b1ee89346b482bf15;hb=HEAD;hp=641f3eba65ef561991e8948f5abd8e68c0d83878;hpb=db18734d1fed426ff5c6a318f3179001a606690e;p=vid.git 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; }