su4sml/add-ons/jtestdataaccessor/src/test/resources/valid/test2.conf

31 lines
455 B
Plaintext

[foo]
resulttype = boolean;
inputtypes = int, Boolean, String;
setup = function1();
teardown = function2();
{
input = 1, true, "Hi";
result = false;
checker = EQUALS;
}
[bar]
resulttype = boolean;
inputtypes = int, Double;
{
input = 1, 3.141592;
result = java.lang.Exception;
}
[bar]
resulttype = boolean;
inputtypes = int, Double;
{
input = 1, getInput();
result = false;
}
{
input = 'c', getInput();
result = false;
}