* General tests for passing JAXB objects
*/
@Test
public void test_generalJAXB() {
try {
ScenarioFourStruct input = new ScenarioFourStruct();
input.field1 = "Test";
input.field2 = 1;
input.field3 = new double[1];
ScenarioFourStruct output = scenarioFour.setStruct(input);
assertTrue(input.equals(output));
} catch (Exception e) {
e.printStackTrace();
Assert.fail(e.getMessage());
}