@Test
public void testWellKnownServiceConnectWithReceiveAndDisconnect() throws Exception {
DummyServiceAccessPoint serviceAccessPoint = new DummyServiceAccessPoint(COM_ANDROID_NPP);
connectionManager.registerWellKnownServiceAccessPoint(COM_ANDROID_NPP, serviceAccessPoint);
AbstractProtocolDataUnit processPdu = new Connect(1, 32, new ServiceName(COM_ANDROID_NPP))
.processPdu(connectionManager);
assertTrue(processPdu.toString(), processPdu instanceof ConnectComplete);
assertEquals(1, connectionManager.getOpenConnectionsSize());
processPdu = new Information(32, 32, 0, 0, "Hello".getBytes()).processPdu(connectionManager);