ScenarLang Wiki
A DSL that ease (shortens) the set up mockito based unit tests
Status: Beta
Brought to you by:
ponchy
$SOME_PERSON = { name: "Doe", fistName: "John", birthDate: "2012-12-15", isMale: true, address: { street: "1st Ave" number: 42 zip: 10004 } } as "my.kind.of.Person";
Explaination:
mockAgeCalculator.getAge($SOME_PERSON) = 42;
caculator.ageCalculator = mock "my.age.AgeCalculator";
To be continued...