use of org.testng.annotations.AfterMethod in project head by mifos.
the class CollectionSheetEntryCustomerAccountTest method logOut.
@AfterMethod
public void logOut() {
(new MifosPage(selenium)).logout();
new DateTimeUpdaterRemoteTestingService(selenium).resetDateTime();
}
use of org.testng.annotations.AfterMethod in project head by mifos.
the class CollectionSheetEntryTest method logOut.
@AfterMethod
public void logOut() {
(new MifosPage(selenium)).logout();
new DateTimeUpdaterRemoteTestingService(selenium).resetDateTime();
}
use of org.testng.annotations.AfterMethod in project OpenAM by OpenRock.
the class DebugTestTemplate method clean.
@AfterMethod
public void clean() throws IOException {
delete(new File(debugDirectory));
count++;
}
use of org.testng.annotations.AfterMethod in project OpenAM by OpenRock.
the class DebugTestTemplate method clean.
@AfterMethod
public void clean() throws IOException {
delete(new File(debugDirectory));
count++;
}
use of org.testng.annotations.AfterMethod in project oap by oaplatform.
the class AbstractPerformance method afterMethod.
@AfterMethod
@Override
public void afterMethod() throws Exception {
Logger root = (Logger) LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME);
root.setLevel(Level.TRACE);
super.afterMethod();
}
Aggregations