In my last few projects, I have used Test-NG. Uniquely in my current project, I had to generate tests programmatically. Instead of writing one test for each element in the project, I am able to generate a bunch at-will using the following pattern: Factory package test; import org.testng.annotations.Factory; public class DynamicTestFactory { @Factory public Object[] […]