Annotate public non-test methods

Newer versions of TestNG try to run these.
This commit is contained in:
Andrew Gaul
2022-07-31 19:29:29 +09:00
committed by Andrew Gaul
parent 65e16c97f5
commit 2b217fb2bb
4 changed files with 6 additions and 0 deletions
@@ -36,6 +36,8 @@ import com.google.inject.Injector;
@Test(groups = "unit")
public class ListHostsResponseTest extends BaseParserTest<Set<Host>, Set<Host>> {
@Override
@Test(enabled = false)
public void compare(Set<Host> expects, Set<Host> response) {
assertEquals(response.toString(), expects.toString());
}