diff options
author | Parshad Patel <pars.patel@samsung.com> | 2018-12-21 15:36:35 +0900 |
---|---|---|
committer | Parshad Patel <pars.patel@samsung.com> | 2018-12-21 15:43:34 +0900 |
commit | 4e3bb539cd8a678d8ea1e861c0cf04d472d50d9d (patch) | |
tree | 949d8dd3685218c75d888ca56b779bfa46a12919 /core/core-infrastructure | |
parent | b70b381538d2c6fca65530538b36c8f8fdebd104 (diff) |
Rename test classes in apex-pdp/model,core
Make test classes name consitence by adding 'Test' at end of junit test classes and adding 'Support' or 'Dummy' at start of util or dummy type of test classes
Issue-ID: POLICY-1263
Change-Id: I6cb8d09799d7abd1b50ead1edbc4986649ad4ba7
Signed-off-by: Parshad Patel <pars.patel@samsung.com>
Diffstat (limited to 'core/core-infrastructure')
-rw-r--r-- | core/core-infrastructure/src/test/java/org/onap/policy/apex/core/infrastructure/messaging/DummyMessageListener.java (renamed from core/core-infrastructure/src/test/java/org/onap/policy/apex/core/infrastructure/messaging/TestMessageListener.java) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/core-infrastructure/src/test/java/org/onap/policy/apex/core/infrastructure/messaging/TestMessageListener.java b/core/core-infrastructure/src/test/java/org/onap/policy/apex/core/infrastructure/messaging/DummyMessageListener.java index 9e7562b5e..4d5aedb3d 100644 --- a/core/core-infrastructure/src/test/java/org/onap/policy/apex/core/infrastructure/messaging/TestMessageListener.java +++ b/core/core-infrastructure/src/test/java/org/onap/policy/apex/core/infrastructure/messaging/DummyMessageListener.java @@ -33,10 +33,10 @@ import org.slf4j.ext.XLoggerFactory; * method is invoked. * */ -public abstract class TestMessageListener implements MessageListener<String> { +public abstract class DummyMessageListener implements MessageListener<String> { /** The Constant logger. */ - private static final XLogger logger = XLoggerFactory.getXLogger(TestMessageListener.class); + private static final XLogger logger = XLoggerFactory.getXLogger(DummyMessageListener.class); /** * On command. |