Selenium Java - TestNG Integration
Why does the following TestNG test class fail to run any tests?
public class TestClass {
@BeforeMethod
public void setup() {}
public void testMethod() {}
@AfterMethod
public void cleanup() {}
}