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