@Test public void testReaddServiceTCP() throws Exception { testAddServiceTCP(); expectUpdateEvent(); m_provisioner.addServiceTCP("MyTCP", 5, 55, 555, 5555, 55555, 505, "AHOY"); checkTCPConfiguration("MyTCP", "MyTCP", 5, 55, 555, 5555, 55555, 505, "AHOY"); verifyEvents(); }
@Test public void testAddServiceTCP() throws Exception { expectUpdateEvent(); m_mocks.replayAll(); m_provisioner.addServiceTCP("MyTCP", 4, 44, 444, 4444, 44444, 404, "HELO"); checkTCPConfiguration("MyTCP", "MyTCP", 4, 44, 444, 4444, 44444, 404, "HELO"); m_mocks.verifyAll(); verifyEvents(); }