diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-12-03 20:38:44 +0200 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2019-12-04 14:57:30 +0200 |
commit | 74f309f00ee86d768378573598cb9c338fffbd9f (patch) | |
tree | 01ca4f34f3b931ba61d755643eec2a0b34aed9de /vid-automation/TestNg-ApiTest.xml | |
parent | da3f5a40d2b98369842c640729f14823034138af (diff) |
Sink all Async-Jobs logging to same debug.log
Error events are _replicated_ to error.log
Main incentive is to have all JobWorker, ResourceCommand
and MsoResultHandlerService logging the job life-cycle on
same page.
Issue-ID: VID-253
Change-Id: I862b408d71767ca3d5e6da3071bbae751261587e
Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'vid-automation/TestNg-ApiTest.xml')
-rw-r--r-- | vid-automation/TestNg-ApiTest.xml | 8 |
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; } |