use of org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev150720.InstructionStatusChanged in project bgpcep by opendaylight.
the class MockedNotificationServiceWrapper method assertInstructionStatusChangedNotification.
void assertInstructionStatusChangedNotification(final int idx, final InstructionId id, final InstructionStatus status) {
assertTrue(InstructionStatusChanged.class.isAssignableFrom(this.publishedNotifications.get(idx).getClass()));
final InstructionStatusChanged firstNotification = (InstructionStatusChanged) this.publishedNotifications.get(idx);
assertInstructionStatusChangedNotification(id, status, firstNotification);
}
Aggregations