blob: 4d6f450924289051717dd6dfe9fddf2ea42f6236 [file] [log] [blame]
package test.factory;
import org.testng.Assert;
import org.testng.TestListenerAdapter;
import org.testng.TestNG;
import org.testng.annotations.Test;
import test.SimpleBaseTest;
public class FactoryFailureTest extends SimpleBaseTest {
@Test
public void factoryThrowingShouldNotRunTests() {
TestNG tng = create(FactoryFailureSampleTest.class);
TestListenerAdapter tla = new TestListenerAdapter();
try {
tng.run();
Assert.fail();
}
catch(Exception ex) {
// success
}
}
}