}
public void testSystemOfODE()
{
final ParserServiceAsync parserService = ParserService.Util.getInstance();
delayTestFinish(500);
List<String> systemInput = new ArrayList<String>(2);
systemInput.add("y'= y + x, y = 0");
systemInput.add("z'= z + y + x, z = 0");
parserService.parseEquationsSystem(systemInput, new AsyncCallback<System>()
{
@Override
public void onFailure(Throwable caught)
{