public void after(Object testInstance, Method testMethod) throws Exception
{
Validate.notNull(testInstance, "TestInstance must be specified");
Validate.notNull(testMethod, "TestMethod must be specified");
contextLifecycle.createRestoreTestContext(testInstance).fire(new After(testInstance, testMethod));
try
{
contextLifecycle.destroyTestContext(testInstance);
}
finally