assertEquals(12, ipFc.getPriority());
assertTrue(controllers.get(7) instanceof SingleIpFlowController);
SingleIpFlowController ipSc = (SingleIpFlowController) controllers.get(7);
assertEquals(14, ipSc.getPriority());
IpRequestMatcher ipMatcher = (IpRequestMatcher) ipSc.getMatcher();
assertEquals("192.168.1.8", ipMatcher.getIp());
assertTrue(controllers.get(8) instanceof SingleIpFlowController);
ipMatcher = (IpRequestMatcher) ((SingleIpFlowController) controllers.get(8)).getMatcher();
assertEquals("192.168.1.10", ipMatcher.getIp());
assertTrue(controllers.get(9) instanceof GlobalFlowController);
GlobalFlowController gc = (GlobalFlowController) controllers.get(9);
assertEquals(100, gc.getPriority());
}