Added support for the TEXT command to the Java client.

This commit is contained in:
Jason Watkins
2015-04-07 15:02:24 -07:00
parent 46913596c5
commit a903859a3c
2 changed files with 60 additions and 1 deletions

View File

@@ -217,6 +217,16 @@ public class XPlaneConnectTest
}
}
@Test
public void testSendTEXT() throws IOException
{
String msg = "XPlaneConnect Java message test.";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendTEXT(msg, 200, 400);
}
}
@Test
public void testSendDREF() throws IOException
{