summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2021-02-12 22:33:23 +0000
committerGerrit Code Review <gerrit@onap.org>2021-02-12 22:33:23 +0000
commit5f92fb77a89fd92a55b1448d6ca5421f3797d822 (patch)
treebc787ff8dfa25eeba0002c34b6f219217475b4eb
parentb07dd8a325f55d03f4dfec511ecd096429b4c7b0 (diff)
parent222018349b49d229fc95a3939f4eaad3a3b663a8 (diff)
Merge "More sonars in models"
-rw-r--r--models-interactions/model-simulators/src/main/java/org/onap/policy/simulators/TopicServer.java4
-rw-r--r--models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/MainTest.java11
2 files changed, 9 insertions, 6 deletions
diff --git a/models-interactions/model-simulators/src/main/java/org/onap/policy/simulators/TopicServer.java b/models-interactions/model-simulators/src/main/java/org/onap/policy/simulators/TopicServer.java
index 4c01511da..004a2e20c 100644
--- a/models-interactions/model-simulators/src/main/java/org/onap/policy/simulators/TopicServer.java
+++ b/models-interactions/model-simulators/src/main/java/org/onap/policy/simulators/TopicServer.java
@@ -2,7 +2,7 @@
* ============LICENSE_START=======================================================
* ONAP
* ================================================================================
- * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2020-2021 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.
@@ -43,7 +43,7 @@ public abstract class TopicServer<Q> implements TopicListener {
* @param sink sink to which responses should be published
* @param source source from which requests arrive
*/
- public TopicServer(TopicSink sink, TopicSource source, Coder coder, Class<Q> reqClass) {
+ protected TopicServer(TopicSink sink, TopicSource source, Coder coder, Class<Q> reqClass) {
this.sink = sink;
this.source = source;
this.coder = coder;
diff --git a/models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/MainTest.java b/models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/MainTest.java
index f5598e2e1..1f52ed124 100644
--- a/models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/MainTest.java
+++ b/models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/MainTest.java
@@ -2,7 +2,7 @@
* ============LICENSE_START=======================================================
* ONAP
* ================================================================================
- * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2020-2021 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.
@@ -242,7 +242,8 @@ public class MainTest {
*/
@Test
public void testBuildTopicServerInvalidProvider() {
- assertThatThrownBy(() -> new Main("invalidTopicServer.json").start());
+ assertThatThrownBy(() -> new Main("invalidTopicServer.json").start())
+ .hasCauseInstanceOf(IllegalArgumentException.class);
}
/**
@@ -250,7 +251,8 @@ public class MainTest {
*/
@Test
public void testBuildTopicServerNoSink() {
- assertThatThrownBy(() -> new Main("missingSink.json").start());
+ assertThatThrownBy(() -> new Main("missingSink.json").start())
+ .hasCauseInstanceOf(IllegalArgumentException.class);
}
/**
@@ -258,6 +260,7 @@ public class MainTest {
*/
@Test
public void testBuildTopicServerNoSource() {
- assertThatThrownBy(() -> new Main("missingSource.json").start());
+ assertThatThrownBy(() -> new Main("missingSource.json").start())
+ .hasCauseInstanceOf(IllegalArgumentException.class);
}
}