final String msgNameTwo = "/PILLEPALLE-TWO";
final String msgName3 = "/PILLEPALLE-3";
final String param = "param234";
OscServer srv1 = OscServerFactory.createServer(this, 8888, 4096);
srv1.startServer();
OscMessage msg = new OscMessage(msgName);
OscClientFactory.sendOscMessage("127.0.0.1", 8888, msg);
Thread.sleep(100);
Assert.assertEquals(msgName, lastMsgHandler.getOscPattern());