[getAge]
resulttype = int;       # Type of the result
setup = setup0();       # Setup the object
{
    result = 9;         # Expected result
    checker = EQUALS;   # Check of result
    comment = "Test if the result is 9";
}

[setName]
inputtypes = String;    # Type of the input
setup = setup1();
{
    input = "Foo";      # Provided input
    checker = resultcheck0();
}
