waitUntilStatus(connector, DEFAULT_TIMEOUT, Status.OK);
connector.doStop();
// validate the bind packet
Bind bind = pp.getBindPacket(DEFAULT_TIMEOUT);
Assert.assertNotNull( bind );
Assert.assertEquals( bind.getCommandId(), SmppPacket.BIND_TRANSCEIVER );
Assert.assertEquals( bind.getSystemId(), "test" );
Assert.assertEquals( bind.getPassword(), "test" );
Assert.assertEquals( bind.getSystemType(), "test" );
Assert.assertEquals( bind.getAddressRange().getNpi(), 1 );
Assert.assertEquals( bind.getAddressRange().getTon(), 2 );
}