diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2019-03-20 13:45:30 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-20 13:45:30 +0000 |
commit | 232bd030951905cb5ad2f1ddad5400a005fe40c6 (patch) | |
tree | 240eebda61412744b9346c6b44bc2c36a7757290 /policy-endpoints/src/test/java/org | |
parent | 8fa0f6670063657249f75d9656d61fed5bf0b79f (diff) | |
parent | cc4765116c0b5716f8edf4dc23970e964bb1fe5d (diff) |
Merge "Add method to support configure all topics at once"
Diffstat (limited to 'policy-endpoints/src/test/java/org')
-rw-r--r-- | policy-endpoints/src/test/java/org/onap/policy/common/endpoints/event/comm/TopicEndpointProxyTest.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/policy-endpoints/src/test/java/org/onap/policy/common/endpoints/event/comm/TopicEndpointProxyTest.java b/policy-endpoints/src/test/java/org/onap/policy/common/endpoints/event/comm/TopicEndpointProxyTest.java index a311c0b0..ba5fe18e 100644 --- a/policy-endpoints/src/test/java/org/onap/policy/common/endpoints/event/comm/TopicEndpointProxyTest.java +++ b/policy-endpoints/src/test/java/org/onap/policy/common/endpoints/event/comm/TopicEndpointProxyTest.java @@ -145,6 +145,17 @@ public class TopicEndpointProxyTest { } @Test + public void addTopics() { + TopicEndpoint manager = new TopicEndpointProxy(); + + List<Topic> topics = manager.addTopics(configuration); + assertSame(6, topics.size()); + + assertTrue(allSources(topics)); + assertTrue(allSinks(topics)); + } + + @Test public void getTopicSources() { TopicEndpoint manager = new TopicEndpointProxy(); |