summaryrefslogtreecommitdiffstats
path: root/asdc-tests/src/main/java/org/openecomp/sdc/ci/tests/rules/MyTestWatcher.java
diff options
context:
space:
mode:
Diffstat (limited to 'asdc-tests/src/main/java/org/openecomp/sdc/ci/tests/rules/MyTestWatcher.java')
-rw-r--r--asdc-tests/src/main/java/org/openecomp/sdc/ci/tests/rules/MyTestWatcher.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/asdc-tests/src/main/java/org/openecomp/sdc/ci/tests/rules/MyTestWatcher.java b/asdc-tests/src/main/java/org/openecomp/sdc/ci/tests/rules/MyTestWatcher.java
index aa6131c8ff..799309e55d 100644
--- a/asdc-tests/src/main/java/org/openecomp/sdc/ci/tests/rules/MyTestWatcher.java
+++ b/asdc-tests/src/main/java/org/openecomp/sdc/ci/tests/rules/MyTestWatcher.java
@@ -22,13 +22,13 @@ package org.openecomp.sdc.ci.tests.rules;
import org.junit.rules.TestWatcher;
import org.junit.runner.Description;
-import org.openecomp.sdc.ci.tests.api.SdcTest;
+import org.openecomp.sdc.ci.tests.api.AttSdcTest;
public class MyTestWatcher extends TestWatcher {
- SdcTest odlTest;
+ AttSdcTest odlTest;
- public MyTestWatcher(SdcTest odlTest) {
+ public MyTestWatcher(AttSdcTest odlTest) {
this.odlTest = odlTest;
}
@@ -65,7 +65,7 @@ public class MyTestWatcher extends TestWatcher {
protected void starting(Description description) {
// System.out.println("protected void starting(Description description)
// {");
- this.odlTest.getLogger().debug("Start running test {}", description.getMethodName());
+ this.odlTest.getLogger().debug("Start running test {}",description.getMethodName());
}
/**
@@ -77,6 +77,6 @@ public class MyTestWatcher extends TestWatcher {
protected void finished(Description description) {
// System.out.println("protected void finished(Description description)
// {");
- this.odlTest.getLogger().debug("Finish running test {}", description.getMethodName());
+ this.odlTest.getLogger().debug("Finish running test {}",description.getMethodName());
}
}