X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=cisco-xr-driver%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Funimgr%2Fmef%2Fnrp%2Fcisco%2Fxr%2Fl2vpn%2Fhelper%2FAttachmentCircuitHelperTest.java;h=21217d1934cc443f9442a1357525d28e6e9fa785;hb=HEAD;hp=39874e5909b48fcfbfe098c96104fc054f769836;hpb=a4d5096322cc75df8550fe9edbcd3da83a0f0a2f;p=unimgr.git diff --git a/cisco-xr-driver/src/test/java/org/opendaylight/unimgr/mef/nrp/cisco/xr/l2vpn/helper/AttachmentCircuitHelperTest.java b/cisco-xr-driver/src/test/java/org/opendaylight/unimgr/mef/nrp/cisco/xr/l2vpn/helper/AttachmentCircuitHelperTest.java index 39874e59..21217d19 100644 --- a/cisco-xr-driver/src/test/java/org/opendaylight/unimgr/mef/nrp/cisco/xr/l2vpn/helper/AttachmentCircuitHelperTest.java +++ b/cisco-xr-driver/src/test/java/org/opendaylight/unimgr/mef/nrp/cisco/xr/l2vpn/helper/AttachmentCircuitHelperTest.java @@ -7,24 +7,24 @@ */ package org.opendaylight.unimgr.mef.nrp.cisco.xr.l2vpn.helper; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import java.util.List; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.opendaylight.unimgr.mef.nrp.cisco.xr.common.ServicePort; import org.opendaylight.unimgr.mef.nrp.cisco.xr.common.helper.InterfaceHelper; -import org.opendaylight.yang.gen.v1.http.cisco.com.ns.yang.cisco.ios.xr.l2vpn.cfg.rev151109.l2vpn.database.xconnect.groups.xconnect.group.p2p.xconnects.p2p.xconnect.AttachmentCircuits; -import org.opendaylight.yang.gen.v1.http.cisco.com.ns.yang.cisco.ios.xr.l2vpn.cfg.rev151109.l2vpn.database.xconnect.groups.xconnect.group.p2p.xconnects.p2p.xconnect.attachment.circuits.AttachmentCircuit; -import org.opendaylight.yang.gen.v1.http.cisco.com.ns.yang.cisco.xr.types.rev150629.InterfaceName; +import org.opendaylight.yang.gen.v1.http.cisco.com.ns.yang.cisco.ios.xr.l2vpn.cfg.rev170626.l2vpn.database.xconnect.groups.xconnect.group.p2p.xconnects.p2p.xconnect.AttachmentCircuits; +import org.opendaylight.yang.gen.v1.http.cisco.com.ns.yang.cisco.ios.xr.l2vpn.cfg.rev170626.l2vpn.database.xconnect.groups.xconnect.group.p2p.xconnects.p2p.xconnect.attachment.circuits.AttachmentCircuit; +import org.opendaylight.yang.gen.v1.http.cisco.com.ns.yang.cisco.xr.types.rev171201.InterfaceName; import org.powermock.api.mockito.PowerMockito; import org.powermock.core.classloader.annotations.PrepareForTest; import org.powermock.modules.junit4.PowerMockRunner; -import java.util.List; - -import static org.junit.Assert.*; -/** +/* * @author krzysztof.bijakowski@amartus.com */ @RunWith(PowerMockRunner.class)