Package com.neophob.sematrix.osc.server

Examples of com.neophob.sematrix.osc.server.TestOscServer


  private OscMessage msg = null;
 
  @Test
  public void TestObserver() {
    OscServer srv = new TestOscServer(this);       
    srv.startServer();
    //initial / removed
    assertEquals("HELLO", msg.getPattern());
    assertEquals("WORLD", msg.getArgs()[0]);
    assertEquals(4, srv.getPacketCounter());
    assertTrue(srv.getBytesRecieved() > 20);
  }
View Full Code Here

TOP

Related Classes of com.neophob.sematrix.osc.server.TestOscServer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.