Files
XPlaneConnectCSP/TestScripts/Java Tests/XPlaneConnectTest.java
Jason Watkins a3be4cb1b6 Version 1.3-rc.1 (#138)
* Minor improvements to the handling of landing gear by the SetGear and HandlePOSI functions

* sendPOSI command change (double for lat/lon/h) (#111)

* Updated POSI to use doubles for lat/lon/alt, as step size for floats was unacceptably large at high longitudes.

* Updated Java library for MATLAB, updated Java project, and updated Windows plugin binaries

* Rolled back Java version to 1.7 for MATLAB compatibility

* Update MessageHandlers.cpp

* Update DataManager.cpp

* Added pause functionality for individual a/c

Adds new cases such that:
0: Unpauses all a/c
1: Pauses all a/c
2: Switches case for all a/c
100:119: Pauses a/c 0:19
200:219: Unpauses a/c 0:19

Updates log messages.

Keeps the 0,1,2 arguments as they previously were.

* Finished individual pause functionality

* Update DataManager.cpp

* Updated flags to allow for individual pause commands

* Individual pause command documentation

* Updated flags to allow for individual pause commands

* Adding individual pause to documentation

* Updated flags to allow for individual pause commands

* Requested changes, cleaning

* Update CMakeLists.txt

Include "-fno-stack-protector" for linking and compiling for systems that do not have this have this flag as a default.

* Enabling AI after setting position (#118)

Previously, the code enabled the AI before setting the position of a/c, which negated its purpose.

* Updated XPlane SDK to version 2.1.3

* Resolve function ambiguity for std::abs on mac

Fixes #126

* Update copyright notice

* Update Windows binaries

* Update Linux binaries

* Update version numbers

* fix osx abs ambiguity (#142)

* fix indexing error (#143)

* Runway camera location control (#144)

* update ignore

* basics working

* set cam pos remotely

* log cam position

* keep default behaviour, if short view message is received

Compatibility with existing software

* all to tabs

* rename variable

* option to use camera direction fields

* Added UDP multicast for plugin discovery (#153)

* Added Timer

* Added UDPSocket::GetAddr

* Added MessageHandlers::SendBeacon()

* PoC of starting a timer on PluginEnable

* C++11

* Added Timer to xcode project

* C++11 in cmake

* added Timer to cmake

* use function pointer in Timer

* moved Timer to namespace

+ wait for thread to join when stopping the timer

* Windows: changed uint to unisgned short

* Windows: Added Timer.h/cpp to project

* GetAddr static

* Send xplane and plugin version with BECN

* SendBeacon with params

* fixed file copyrights

* Include functional

to fix Linux compile error

* review fixes

* Send plugin receive port in BECN

* review fixes

* Fixed tabs vs spaces indentations (#157)

* Java client BECN implementation (#155)

* Added MS Azure Dev Ops CI integration (#162)

* Do not build for i386 on macOS

Use ARCHS_STANDARD  to avoid the error “The i386 architecture is deprecated. You should update your ARCHS build setting to remove the i386 architecture.”

* Fixed missing include

The Visual Studio solution was not compiling

* Fixed isnan ambigious refernce

Ambigious reference when compiling on travis

https://stackoverflow.com/questions/33770374/why-is-isnan-ambiguous-and-how-to-avoid-it

* Set MSVC warning level to 3

Too many warnings were generated when building a Release build making Travis job to fail because of too much output

* Use default toolset for Visual Studio

AppVeyor recommends to set the default toolset

* #include <cstdint>

* Use MSVC ToolsVersion="14.0"

# Conflicts:
#	xpcPlugin/xpcPlugin/xpcPlugin.vcxproj

* Removed binaries from repository

# Conflicts:
#	xpcPlugin/XPlaneConnect/64/win.xpl
#	xpcPlugin/XPlaneConnect/win.xpl

* Added ms azure ci

xcode

linux

linux + macos

linux + macos

removed branch filter

win tests

win tests

Test all platfroms

artifacts tests

* output all binaries to ‘XPlaneConnect’

All platforms produce a binary in
xpcPlugin/XPlaneConnect/
xpcPlugin/XPlaneConnect/64/

* Added ms azure GH deploy

deploy stage

GH release test

trigger tags

* Clean up yml file

- Added variables
- Added job decriptions

* Ignore script to ignore .exp files

+ fixed output path

* Renamed ms azure GH connection

* Update service connection for azure pipeline

* Added Python3 compatible xpc client. (#156)

* Update Azure Pipelines service connection
2019-07-20 08:43:51 -07:00

729 lines
21 KiB
Java

package gov.nasa.xpc.test;
import gov.nasa.xpc.ViewType;
import gov.nasa.xpc.WaypointOp;
import gov.nasa.xpc.XPlaneConnect;
import static org.junit.Assert.*;
import org.junit.Test;
import java.io.IOException;
import java.net.SocketException;
import java.net.UnknownHostException;
public class XPlaneConnectTest
{
@Test
public void constructorTest()
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
assertNotNull(xpc);
}
catch (SocketException ex)
{
fail();
}
try(XPlaneConnect xpc = new XPlaneConnect(200))
{
assertNotNull(xpc);
}
catch (SocketException ex)
{
fail();
}
try(XPlaneConnect xpc = new XPlaneConnect("127.0.0.1", 49009, 49007))
{
assertNotNull(xpc);
}
catch (SocketException | UnknownHostException ex)
{
fail();
}
try(XPlaneConnect xpc = new XPlaneConnect("127.0.0.1", 49009, 49007, 200))
{
assertNotNull(xpc);
}
catch (SocketException | UnknownHostException ex)
{
fail();
}
}
@Test
public void testGetRecvPort() throws Exception
{
try(XPlaneConnect xpc = new XPlaneConnect("127.0.0.1", 49009, 49008))
{
assertEquals(49008, xpc.getRecvPort());
}
}
@Test
public void testGetXPlanePort() throws SocketException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
assertEquals(49009, xpc.getXPlanePort());
}
}
@Test
public void testGetXPlaneAddr() throws SocketException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
assertEquals("127.0.0.1", xpc.getXPlaneAddr());
}
}
@Test
public void testSetXPlaneAddr() throws SocketException, UnknownHostException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.setXplaneAddr("10.10.0.100");
assertEquals("10.10.0.100", xpc.getXPlaneAddr());
}
}
@Test
public void constructorTest_SocketAlreadyBound() throws Exception
{
try(XPlaneConnect xpc = new XPlaneConnect("127.0.0.1", 49009, 49008))
{
try(XPlaneConnect xpc2 = new XPlaneConnect("127.0.0.1", 49009, 49008))
{
fail();
}
catch (SocketException ex) {}
}
catch (SocketException ex)
{
fail();
}
}
@Test(expected = UnknownHostException.class)
public void constructorTest_InvalidHost() throws UnknownHostException
{
try(XPlaneConnect xpc = new XPlaneConnect("notarealhost", 49009, 49007))
{
}
catch (SocketException ex)
{
fail();
}
fail();
}
@Test
public void testRequestDREF() throws IOException
{
String dref = "sim/cockpit/switches/gear_handle_status";
try(XPlaneConnect xpc = new XPlaneConnect())
{
float[] result = xpc.getDREF(dref);
assertEquals(1, result.length);
}
}
@Test
public void testRequestDREFs() throws IOException
{
String[] drefs =
{
"sim/cockpit/switches/gear_handle_status",
"sim/cockpit2/switches/panel_brightness_ratio"
};
try(XPlaneConnect xpc = new XPlaneConnect())
{
float[][] result = xpc.getDREFs(drefs);
assertEquals(2, result.length);
assertEquals(1, result[0].length);
assertEquals(4, result[1].length);
}
}
@Test(expected = IllegalArgumentException.class)
public void testRequestDREFs_NullArgument() throws IOException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.getDREFs(null);
fail();
}
}
@Test(expected = IllegalArgumentException.class)
public void testRequestDREFs_EmptyArgument() throws IOException
{
String[] drefs = new String[0];
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.getDREFs(drefs);
fail();
}
}
@Test(expected = IllegalArgumentException.class)
public void testRequestDREFs_TooManyDREFs() throws IOException
{
String[] drefs = new String[300];
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.getDREFs(drefs);
fail();
}
}
@Test(expected = IllegalArgumentException.class)
public void testRequestDREFs_DREFTooLong() throws IOException
{
String longDREF = "sim/cockpit/switches/i/am/a/very/long/fake/dref/that/is/over/255/characters/./which/means/that/my/length/cant/be/encoded/in/the/single/byte/allocated/by/the/message/format/,/so/i/should/cause/an/exception/instead/./i/am/still/not/long/enough/./almost/there";
String[] drefs = new String[]{longDREF};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.getDREFs(drefs);
fail();
}
}
@Test(expected = IllegalArgumentException.class)
public void testRequestDREF_DREFEmpty() throws IOException
{
String dref = "";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.getDREF(dref);
fail();
}
}
@Test
public void testPauseSim() throws IOException
{
String dref = "sim/operation/override/override_planepath";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.pauseSim(true);
float[] result = xpc.getDREF(dref);
assertEquals(20, result.length);
assertEquals(1, result[0], 1e-4);
xpc.pauseSim(false);
result = xpc.getDREF(dref);
assertEquals(20, result.length);
assertEquals(0, result[0], 1e-4);
}
}
@Test
public void testPauseSim_Switch() throws IOException
{
String dref = "sim/operation/override/override_planepath";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.pauseSim(true);
float[] result = xpc.getDREF(dref);
assertEquals(20, result.length);
assertEquals(1, result[0], 1e-4);
xpc.pauseSim(2);
result = xpc.getDREF(dref);
assertEquals(20, result.length);
assertEquals(0, result[0], 1e-4);
}
}
@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 testSendTEXT_Multiline() throws IOException
{
String msg = "XPlaneConnect Java message test.\nNow with new lines!\rAnd another...\r\nAnd now a double.";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendTEXT(msg, 200, 400);
}
}
@Test
public void testSendTEXT_Long() throws IOException
{
String msg = "XPlaneConnect Java message test.\nNow with new lines!\rAnd another...\r\nAnd now a double\nAnd finally a really long line because that seemed to break things.";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendTEXT(msg, 200, 400);
}
}
@Test
public void testSendWYPT_Add() throws IOException
{
float points[] =
{
37.455397F, -122.050037F, 2500F,
37.469567F, -122.051411F, 2500F,
37.479376F, -122.060509F, 2300F,
37.482237F, -122.076130F, 2100F,
37.474881F, -122.087288F, 1900F,
37.467660F, -122.079391F, 1700F,
37.466298F, -122.090549F, 1500F,
37.362562F, -122.039223F, 1000F,
37.361448F, -122.034416F, 1000F,
37.361994F, -122.026348F, 1000F,
37.365541F, -122.022572F, 1000F,
37.373727F, -122.024803F, 1000F,
37.403869F, -122.041283F, 50F,
37.418544F, -122.049222F, 6F
};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendWYPT(WaypointOp.Add, points);
}
}
@Test
public void testSendWYPT_Delete() throws IOException
{
float points[] =
{
37.361448F, -122.034416F, 1000F,
37.361994F, -122.026348F, 1000F,
37.365541F, -122.022572F, 1000F,
37.373727F, -122.024803F, 1000F,
};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendWYPT(WaypointOp.Del, points);
}
}
@Test
public void testSendWYPT_Clear() throws IOException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendWYPT(WaypointOp.Clr, new float[0]);
}
}
@Test
public void testSendDREF() throws IOException
{
String dref = "sim/cockpit/switches/gear_handle_status";
try(XPlaneConnect xpc = new XPlaneConnect())
{
float gearHandle = xpc.getDREF(dref)[0];
float value = gearHandle > 0.5 ? 0 : 1;
xpc.sendDREF(dref, value);
float result = xpc.getDREF(dref)[0];
assertEquals(value, result, 1e-4);
}
}
@Test
public void testSendDREFs() throws IOException
{
String[] drefs =
{
"sim/cockpit/switches/gear_handle_status",
"sim/cockpit/autopilot/altitude"
};
try(XPlaneConnect xpc = new XPlaneConnect())
{
float[][] values = {{1}, {2000}};
xpc.sendDREFs(drefs, values);
float[][] result = xpc.getDREFs(drefs);
assertEquals(values[0][0], result[0][0], 1e-4);
assertEquals(values[1][0], result[1][0], 1e-4);
values[0][0] = 0;
values[1][0] = 4000;
xpc.sendDREFs(drefs, values);
result = xpc.getDREFs(drefs);
assertEquals(values[0][0], result[0][0], 1e-4);
assertEquals(values[1][0], result[1][0], 1e-4);
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendDREF_NullDREF() throws IOException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendDREF(null, 0);
fail();
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendDREF_NullValue() throws IOException
{
String dref = "sim/cockpit/switches/gear_handle_status";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendDREF(dref, null);
fail();
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendDREF_EmptyValue() throws IOException
{
String dref = "sim/cockpit/switches/gear_handle_status";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendDREF(dref, new float[0]);
fail();
}
}
@Test
public void testSendDREF_MessageTooLong() throws IOException
{
// NOTE: This test originally ensured that the client restricted messages to 255 bytes in length.
// This restriction is no longer necessary, however removing it uncovered a bug that caused
// the plugin to do a bad memcpy and crash. This test is left here to ensure that X-Plane
// does not crash when given erroneously large value arrays.
String dref = "sim/cockpit/switches/gear_handle_status";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendDREF(dref, new float[200]);
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendDREF_DREFTooLong() throws IOException
{
String dref = "sim/cockpit/switches/i/am/a/very/long/fake/dref/that/is/over/255/characters/./which/means/that/my/length/cant/be/encoded/in/the/single/byte/allocated/by/the/message/format/,/so/i/should/cause/an/exception/instead/./i/am/still/not/long/enough/./almost/there";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendDREF(dref, 0);
fail();
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendDREF_DREFEmpty() throws IOException
{
String dref = "";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendDREF(dref, 0);
fail();
}
}
@Test
public void testSendCTRL() throws IOException
{
String[] drefs = {
"sim/cockpit2/controls/yoke_pitch_ratio",
"sim/cockpit2/controls/yoke_roll_ratio",
"sim/cockpit2/controls/yoke_heading_ratio",
"sim/flightmodel/engine/ENGN_thro",
"sim/cockpit/switches/gear_handle_status",
"sim/flightmodel/controls/flaprqst"
};
float[] ctrl = new float[] {0, 0, 1, 0.8F, 0, 1};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendCTRL(ctrl);
float[][] result = xpc.getDREFs(drefs);
if(result.length < ctrl.length)
{
fail();
}
for(int i = 0; i < 6; ++i)
{
assertEquals(ctrl[i], result[i][0], 1e-2);
}
}
}
@Test
public void testSendCTRL_NPC() throws IOException
{
String[] drefs1 = {
"sim/multiplayer/position/plane1_yolk_pitch",
"sim/multiplayer/position/plane1_yolk_roll",
"sim/multiplayer/position/plane1_yolk_yaw",
"sim/multiplayer/position/plane1_throttle"
};
String[] drefs2 = {
"sim/multiplayer/position/plane1_gear_deploy",
"sim/multiplayer/position/plane1_flap_ratio"
};
float[] ctrl = new float[] {0, 0, 1, 0.8F, 0, 0.5F};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendCTRL(ctrl, 1);
float[][] result1 = xpc.getDREFs(drefs1);
float[][] result2 = xpc.getDREFs(drefs2);
if(result1.length != 4 || result2.length != 2)
{
fail();
}
for(int i = 0; i < 4; ++i)
{
assertEquals(ctrl[i], result1[i][0], 1e-2);
}
for(int i = 0; i < 2; ++i)
{
assertEquals(ctrl[i + 4], result2[i][0], 1e-2);
}
}
}
@Test
public void testSendCTRL_Speedbrakes() throws IOException
{
String dref = "sim/flightmodel/controls/sbrkrqst";
float[] ctrl = new float[] { -998.0F, -998.0F, -998.0F, -998.0F, -998.0F, -998.0F, -0.5F };
try(XPlaneConnect xpc = new XPlaneConnect())
{
// Speedbrakes armed
xpc.sendCTRL(ctrl);
float[] result = xpc.getDREF(dref);
assertEquals(-0.5F, result[0], 1e-4);
ctrl[6] = 1.0F; // Deploy speedbrakes
xpc.sendCTRL(ctrl);
result = xpc.getDREF(dref);
assertEquals(1.0F, result[0], 1e-4);
ctrl[6] = 0.0F; // Retract speedbrakes
xpc.sendCTRL(ctrl);
result = xpc.getDREF(dref);
assertEquals(0.0F, result[0], 1e-4);
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendCTRL_NullCtrl() throws IOException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendCTRL(null);
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendCTRL_LongCtrl() throws IOException
{
float[] ctrl = new float[] {0, 0, 1, 0.8F, 0, 1, 0, -998};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendCTRL(ctrl);
}
}
@Test
public void testSendPOSI() throws IOException
{
String[] drefs = {
"sim/flightmodel/position/latitude",
"sim/flightmodel/position/longitude",
"sim/flightmodel/position/y_agl",
"sim/flightmodel/position/phi",
"sim/flightmodel/position/theta",
"sim/flightmodel/position/psi",
"sim/cockpit/switches/gear_handle_status"
};
double[] posi = new double[] {37.524, -122.06899, 2500, 0, 0, 0, 1};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.pauseSim(true);
xpc.sendPOSI(posi);
//TODO: It seems that these calls are a bit too fast. The dref request often gets stale data, causing the test to fail incorrectly.
try {Thread.sleep(100);}catch(InterruptedException ex){}
float[][] result = xpc.getDREFs(drefs);
xpc.pauseSim(false);
if(result.length < posi.length)
{
fail();
}
assertEquals(posi[0], result[0][0], 1e-4);
assertEquals(posi[1], result[1][0], 1e-4);
assertEquals(posi[2], result[2][0], 10);
assertEquals(posi[3], result[3][0], 1e-4);
assertEquals(posi[4], result[4][0], 1e-4);
assertEquals(posi[5], result[5][0], 1e-4);
assertEquals(posi[6], result[6][0], 1e-4);
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendPOSI_NullCtrl() throws IOException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendPOSI(null);
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendPOSI_LongCtrl() throws IOException
{
double[] posi = new double[] {37.524, -122.06899, 2500, 0, 0, 0, 1, -998};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendPOSI(posi);
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendPOSI_NegativeAircraftNum() throws IOException
{
double[] posi = new double[] {37.524, -122.06899, 2500, 0, 0, 0, 1, -998};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendPOSI(posi, -1);
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendPOSI_LargeAircraftNum() throws IOException
{
double[] posi = new double[] {37.524, -122.06899, 2500, 0, 0, 0, 1, -998};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendPOSI(posi, 300);
}
}
@Test
public void testSendDATA() throws IOException
{
float[][] data = {{25,0.8F,-988,-988,-988,-988,-988,-988,-988}};
String dref = "sim/flightmodel/engine/ENGN_thro";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendDATA(data);
float[] result = xpc.getDREF(dref);
assertEquals(data[0][1], result[0], 1e-4);
}
}
@Test(expected = IllegalArgumentException.class)
public void testSendData_NullData() throws IOException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendDATA(null);
}
fail();
}
@Test(expected = IllegalArgumentException.class)
public void testSendData_InvalidData() throws IOException
{
float[][] data = {{25,0.8F,-988,-988,-988,-988,-988,-988,-988,-988}};
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendDATA(data);
}
fail();
}
@Test
public void testSetCONN() throws IOException
{
String dref = "sim/cockpit/switches/gear_handle_status";
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.setCONN(49055);
assertEquals(49055, xpc.getRecvPort());
float[] result = xpc.getDREF(dref);
assertEquals(1, result.length);
}
}
@Test(expected = IllegalArgumentException.class)
public void testSetCONN_NegativePort() throws IOException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.setCONN(-1);
fail();
}
}
@Test(expected = IllegalArgumentException.class)
public void testSetCONN_LargePort() throws IOException
{
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.setCONN(65536);
fail();
}
}
@Test
public void testSendView() throws IOException
{
String dref = "sim/graphics/view/view_type";
float fwd = 1000;
float chase = 1017;
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendVIEW(ViewType.Forwards);
float result = xpc.getDREF(dref)[0];
assertEquals(fwd, result, 1e-4);
xpc.sendVIEW(ViewType.Chase);
result = xpc.getDREF(dref)[0];
assertEquals(chase, result, 1e-4);
}
}
@Test
public void testGetPOSI() throws IOException
{
double[] values = { 37.524, -122.06899, 2500.0, 45.0, -45.0, 15.0, 1.0 };
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.pauseSim(true);
xpc.sendPOSI(values);
double[] actual = xpc.getPOSI(0);
assertArrayEquals(values, actual, 1e-4F);
}
}
@Test
public void testGetCTRL() throws IOException
{
float[] values = { 0.0F, 0.0F, 0.0F, 0.8F, 1.0F, 0.5F, -1.5F };
try(XPlaneConnect xpc = new XPlaneConnect())
{
xpc.sendCTRL(values);
float[] actual = xpc.getCTRL(0);
assertArrayEquals(values, actual, 1e-4F);
}
}
}