diff options
author | Joss Armstrong <joss.armstrong@ericsson.com> | 2019-01-09 19:17:28 +0000 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2019-01-09 23:19:24 +0000 |
commit | 670feaeaa8695d139e326b635c1f6bd1aa5e0dcf (patch) | |
tree | cb2e16829d5c2511283f6d250bc087fcdf5322a0 /appc-provider/appc-provider-bundle/src/main/java/org | |
parent | 2c496bab6f10006b28ec1aefae7b88ebd96ae437 (diff) |
Test coverage for appc-provider-topology
Increased line coverage from 0% to 86%
Issue-ID: APPC-1317
Change-Id: I2297634d50a389c8c250981656e00a9bb2741ea3
Signed-off-by: Joss Armstrong <joss.armstrong@ericsson.com>
Diffstat (limited to 'appc-provider/appc-provider-bundle/src/main/java/org')
-rw-r--r-- | appc-provider/appc-provider-bundle/src/main/java/org/onap/appc/provider/topology/TopologyService.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/appc-provider/appc-provider-bundle/src/main/java/org/onap/appc/provider/topology/TopologyService.java b/appc-provider/appc-provider-bundle/src/main/java/org/onap/appc/provider/topology/TopologyService.java index 74f3296d7..441aab624 100644 --- a/appc-provider/appc-provider-bundle/src/main/java/org/onap/appc/provider/topology/TopologyService.java +++ b/appc-provider/appc-provider-bundle/src/main/java/org/onap/appc/provider/topology/TopologyService.java @@ -5,6 +5,8 @@ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Copyright (C) 2017 Amdocs + * ================================================================================ + * Modifications (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. @@ -36,13 +38,10 @@ import com.att.eelf.configuration.EELFLogger; import com.att.eelf.configuration.EELFManager; import com.att.eelf.i18n.EELFResourceManager; import java.net.InetAddress; -import java.text.DateFormat; -import java.text.SimpleDateFormat; import java.time.Instant; import java.time.temporal.ChronoUnit; import java.util.Date; import java.util.Properties; -import java.util.TimeZone; import org.onap.appc.Constants; import org.onap.appc.configuration.Configuration; import org.onap.appc.configuration.ConfigurationFactory; @@ -601,7 +600,7 @@ public class TopologyService { /*************************************************/ - private boolean callGraph(Properties props) { + protected boolean callGraph(Properties props) { String moduleName = configuration.getProperty(Constants.PROPERTY_MODULE_NAME); String methodName = configuration.getProperty(Constants.PROPERTY_TOPOLOGY_METHOD); String version = configuration.getProperty(Constants.PROPERTY_TOPOLOGY_VERSION); |