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

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