aboutsummaryrefslogtreecommitdiffstats
path: root/controlloop/common/model-impl/rest
diff options
context:
space:
mode:
authorParshad Patel <pars.patel@samsung.com>2018-11-15 11:59:54 +0900
committerParshad Patel <pars.patel@samsung.com>2018-11-15 12:05:12 +0900
commitb078c9d89a9d6c07f7cb6e7196b34caf797138d6 (patch)
treefc1acfa8fc2988d7b938e3c8a6c11943de4cd985 /controlloop/common/model-impl/rest
parent918d8aa79654111a7254571adf0f84c89dddb36c (diff)
Rename test classes in drools-applications
Make test classes name consistence by putting 'Test' at end as per google java style guide Issue-ID: POLICY-1258 Change-Id: Id79e5d3fe3688f7f2569b7996613595cc6b746e7 Signed-off-by: Parshad Patel <pars.patel@samsung.com>
Diffstat (limited to 'controlloop/common/model-impl/rest')
-rwxr-xr-xcontrolloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/GetTest.java (renamed from controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/TestGet.java)2
-rwxr-xr-xcontrolloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/PairTest.java (renamed from controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/TestPair.java)2
-rwxr-xr-xcontrolloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/PostTest.java (renamed from controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/TestPost.java)2
3 files changed, 3 insertions, 3 deletions
diff --git a/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/TestGet.java b/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/GetTest.java
index 7e881df51..11366c6a0 100755
--- a/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/TestGet.java
+++ b/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/GetTest.java
@@ -26,7 +26,7 @@ import static org.junit.Assert.assertTrue;
import org.junit.Test;
import org.onap.policy.rest.RESTManager.Pair;
-public class TestGet {
+public class GetTest {
@Test(expected = NullPointerException.class)
public void testUrlNull() {
diff --git a/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/TestPair.java b/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/PairTest.java
index 28e9934d1..e245eabdb 100755
--- a/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/TestPair.java
+++ b/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/PairTest.java
@@ -25,7 +25,7 @@ import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.onap.policy.rest.RESTManager.Pair;
-public class TestPair {
+public class PairTest {
@Test
public void testPair() {
diff --git a/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/TestPost.java b/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/PostTest.java
index 58ba5d247..aedd0b288 100755
--- a/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/TestPost.java
+++ b/controlloop/common/model-impl/rest/src/test/java/org/onap/policy/rest/PostTest.java
@@ -25,7 +25,7 @@ import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.onap.policy.rest.RESTManager.Pair;
-public class TestPost {
+public class PostTest {
@Test
public void testUsernameNull() {