diff options
author | ramverma <ram.krishna.verma@est.tech> | 2019-06-26 15:00:39 +0000 |
---|---|---|
committer | ramverma <ram.krishna.verma@est.tech> | 2019-06-26 15:00:39 +0000 |
commit | 2ab8ff1432c570e15a0dbf5ca3672d6739b55df9 (patch) | |
tree | 72fb69fddb919e8340d067834fc45bc94076f88f /main | |
parent | 2a543920a708491a6b2786438feaf55bf0bf1515 (diff) |
Use ToStringTester from utils-test
Changing ToStringTester from utils to utils-test.
Correcting the policy/common & policy/models version.
Change-Id: I33a590367732ff315a9b03aca917e4be5f1ae05e
Issue-ID: POLICY-1746
Signed-off-by: ramverma <ram.krishna.verma@est.tech>
Diffstat (limited to 'main')
-rw-r--r-- | main/pom.xml | 6 | ||||
-rw-r--r-- | main/src/test/java/org/onap/policy/api/main/rest/TestStatisticsReport.java | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/main/pom.xml b/main/pom.xml index 932438a1..e9222eab 100644 --- a/main/pom.xml +++ b/main/pom.xml @@ -82,6 +82,12 @@ <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.onap.policy.common</groupId> + <artifactId>utils-test</artifactId> + <version>${policy.common.version}</version> + <scope>test</scope> + </dependency> </dependencies> <build> diff --git a/main/src/test/java/org/onap/policy/api/main/rest/TestStatisticsReport.java b/main/src/test/java/org/onap/policy/api/main/rest/TestStatisticsReport.java index e240f683..e65a8c88 100644 --- a/main/src/test/java/org/onap/policy/api/main/rest/TestStatisticsReport.java +++ b/main/src/test/java/org/onap/policy/api/main/rest/TestStatisticsReport.java @@ -30,8 +30,7 @@ import com.openpojo.validation.test.impl.GetterTester; import com.openpojo.validation.test.impl.SetterTester; import org.junit.Test; -import org.onap.policy.api.main.rest.StatisticsReport; -import org.onap.policy.common.utils.validation.ToStringTester; +import org.onap.policy.common.utils.test.ToStringTester; /** * Class to perform unit testing of {@link StatisticsReport}. |