Committed by
Gerrit Code Review
Added New Test Case to Validate Netconf Device Provider.
Change-Id: Ib92adcfe433580e400dd8c7ecb88a3328e47c31e
Showing
3 changed files
with
15 additions
and
1 deletions
... | @@ -58,6 +58,20 @@ | ... | @@ -58,6 +58,20 @@ |
58 | <version>1.1.4</version> | 58 | <version>1.1.4</version> |
59 | <optional>true</optional> | 59 | <optional>true</optional> |
60 | </dependency> | 60 | </dependency> |
61 | + <dependency> | ||
62 | + <groupId>org.osgi</groupId> | ||
63 | + <artifactId>org.osgi.core</artifactId> | ||
64 | + </dependency> | ||
65 | + <dependency> | ||
66 | + <groupId>org.onosproject</groupId> | ||
67 | + <artifactId>onlab-junit</artifactId> | ||
68 | + <scope>test</scope> | ||
69 | + </dependency> | ||
70 | + <dependency> | ||
71 | + <groupId>org.easymock</groupId> | ||
72 | + <artifactId>easymock</artifactId> | ||
73 | + <scope>test</scope> | ||
74 | + </dependency> | ||
61 | </dependencies> | 75 | </dependencies> |
62 | 76 | ||
63 | <build> | 77 | <build> | ... | ... |
... | @@ -66,7 +66,7 @@ public class NetconfDeviceProvider extends AbstractProvider | ... | @@ -66,7 +66,7 @@ public class NetconfDeviceProvider extends AbstractProvider |
66 | 66 | ||
67 | private final Logger log = getLogger(NetconfDeviceProvider.class); | 67 | private final Logger log = getLogger(NetconfDeviceProvider.class); |
68 | 68 | ||
69 | - private Map<DeviceId, NetconfDevice> netconfDeviceMap = new ConcurrentHashMap<DeviceId, NetconfDevice>(); | 69 | + protected Map<DeviceId, NetconfDevice> netconfDeviceMap = new ConcurrentHashMap<DeviceId, NetconfDevice>(); |
70 | 70 | ||
71 | private DeviceProviderService providerService; | 71 | private DeviceProviderService providerService; |
72 | 72 | ... | ... |
This diff is collapsed. Click to expand it.
-
Please register or login to post a comment