use of org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.inet.rev171207.ipv6.routes.ipv6.routes.Ipv6Route in project bgpcep by opendaylight.
the class IPv6RIBSupportTest method testPutRoutes.
@Test
public void testPutRoutes() {
RIB_SUPPORT.putRoutes(this.tx, getTablePath(), createNlriAdvertiseRoute(REACH_NLRI), createAttributes());
final Ipv6Route route = (Ipv6Route) this.insertedRoutes.get(0).getValue();
assertEquals(ROUTE, route);
}
Aggregations