summaryrefslogtreecommitdiffstats
path: root/controlloop/common/actors/actor.test
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@ericsson.com>2018-01-28 22:24:23 +0000
committerliamfallon <liam.fallon@ericsson.com>2018-01-30 17:10:41 +0000
commitd896f94cecc28b5a91cd423ba62ee096dc0fac60 (patch)
tree9ca95d120d45959d1913a3c5bf179b4e71b1f46c /controlloop/common/actors/actor.test
parente285764b0eddab0d4195128f55a9f524beee3f05 (diff)
Fix technical debt/JUnit on actor service provider
Unit test for actor service provider added and technical debt removed. Change-Id: I9573f1c3ff0252b166e06caaa88eb679a1fc7347 Signed-off-by: liamfallon <liam.fallon@ericsson.com> Issue-ID: POLICY-455 Signed-off-by: liamfallon <liam.fallon@ericsson.com>
Diffstat (limited to 'controlloop/common/actors/actor.test')
-rw-r--r--controlloop/common/actors/actor.test/src/test/java/org/onap/policy/controlloop/actor/test/Test.java49
1 files changed, 0 insertions, 49 deletions
diff --git a/controlloop/common/actors/actor.test/src/test/java/org/onap/policy/controlloop/actor/test/Test.java b/controlloop/common/actors/actor.test/src/test/java/org/onap/policy/controlloop/actor/test/Test.java
deleted file mode 100644
index e526abd41..000000000
--- a/controlloop/common/actors/actor.test/src/test/java/org/onap/policy/controlloop/actor/test/Test.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * actor test
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.onap.policy.controlloop.actor.test;
-
-import static org.junit.Assert.*;
-
-import org.onap.policy.controlloop.actorServiceProvider.ActorService;
-import org.onap.policy.controlloop.actorServiceProvider.spi.Actor;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class Test {
- private static final Logger logger = LoggerFactory.getLogger(Test.class);
-
- @org.junit.Test
- public void test() {
- logger.debug("Dumping actors");
- ActorService actorService = ActorService.getInstance();
- assertNotNull(actorService);
- int num = 0;
- for (Actor actor : actorService.actors()) {
- logger.debug(actor.actor());
- for (String recipe : actor.recipes()) {
- logger.debug("\t {} {} {}", recipe, actor.recipeTargets(recipe), actor.recipePayloads(recipe));
- }
- num++;
- }
- logger.debug("Found {} actors", num);
- }
-
-}