aboutsummaryrefslogtreecommitdiffstats
path: root/appc-metric/appc-metric-bundle/src/test
diff options
context:
space:
mode:
authorJoss Armstrong <joss.armstrong@ericsson.com>2019-02-21 19:25:50 +0000
committerJoss Armstrong <joss.armstrong@ericsson.com>2019-02-21 19:25:57 +0000
commitbe04e965eec17ad6147dc7b93d7d6c757f787d40 (patch)
tree24ca35de0261263fa3dca06404ba488f817b3df2 /appc-metric/appc-metric-bundle/src/test
parentf1ef95f030b17fa142f525abb94382a295bba36e (diff)
Test coverage in LogPublisher
Added 100% coverage for LogPublisher Issue-ID: APPC-1478 Change-Id: Iaf1d10826eb7cd622f63bf0a7de0b2420bb8f597 Signed-off-by: Joss Armstrong <joss.armstrong@ericsson.com>
Diffstat (limited to 'appc-metric/appc-metric-bundle/src/test')
-rw-r--r--appc-metric/appc-metric-bundle/src/test/java/org/onap/appc/metricservice/publisher/LogPublisherTest.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/appc-metric/appc-metric-bundle/src/test/java/org/onap/appc/metricservice/publisher/LogPublisherTest.java b/appc-metric/appc-metric-bundle/src/test/java/org/onap/appc/metricservice/publisher/LogPublisherTest.java
new file mode 100644
index 000000000..b4e19460d
--- /dev/null
+++ b/appc-metric/appc-metric-bundle/src/test/java/org/onap/appc/metricservice/publisher/LogPublisherTest.java
@@ -0,0 +1,39 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2019 Ericsson
+ * ================================================================================
+ * 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.appc.metricservice.publisher;
+
+import org.junit.Test;
+import org.mockito.Mockito;
+import org.onap.appc.metricservice.impl.MetricRegistryImpl;
+import org.onap.appc.metricservice.metric.Metric;
+
+public class LogPublisherTest {
+
+ @Test
+ public void testLogPublisher() {
+ LogPublisher publisher = new LogPublisher(new MetricRegistryImpl(null), null);
+ Metric metric = Mockito.mock(Metric.class);
+ publisher.publish(new MetricRegistryImpl(null), new Metric[] {metric});
+ Mockito.verify(metric).name();
+ }
+
+}