blob: 14c4c6003d926768de929b3ace6b749b0df4c51e [file] [log] [blame]
package test.inject;
import org.testng.Assert;
import org.testng.TestNG;
import org.testng.annotations.Test;
import test.SimpleBaseTest;
public class InjectAfterMethodWithTestResultTest extends SimpleBaseTest {
@Test
public void verifyTestResultInjection() {
TestNG tng = create(InjectAfterMethodWithTestResultSampleTest.class);
tng.run();
Assert.assertEquals(0, InjectAfterMethodWithTestResultSampleTest.m_success);
}
}