welcomeTestPage.goTo();
welcomeTestPage.assertPetOfTheMonth(expected);
}
public void testCatAsPotm() {
PetOfTheMonth expected = PetOfTheMonth.CAT;
PetStoreModuleWithGlobalStaticOverride.override = 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() {