welcomeTestPage.goTo();
welcomeTestPage.assertPetOfTheMonth(expected);
}
public void testCatAsPotm() {
PetOfTheMonth expected = PetOfTheMonth.CAT;
PetStoreModuleWithTestIdBasedOverride.override.put(testId, expected);
// register a tearDown, so that at the end of the test,
// the override is set to null again
addTearDown(new TearDown() {
public void tearDown() {