diff options
author | Jorge Hernandez <jorge.hernandez-herrero@att.com> | 2018-11-15 14:33:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-11-15 14:33:15 +0000 |
commit | b0ac7e7cb093e5083275aca8c25c8e12aa0d7e75 (patch) | |
tree | adf0cfd05356726eab39e9e7a1dae3ef661cd673 /controlloop/common/model-impl/rest/src | |
parent | efd373a3c33617a859b1da550fe9f52ed063be4a (diff) | |
parent | b078c9d89a9d6c07f7cb6e7196b34caf797138d6 (diff) |
Merge "Rename test classes in drools-applications"
Diffstat (limited to 'controlloop/common/model-impl/rest/src')
-rwxr-xr-x | controlloop/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-x | controlloop/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-x | controlloop/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() { |