We have DAO tests that should run against both the real DAO/database, and against a mock dao to verify that the mock dao behaves the same as the real dao. To this end, we have a structure like this:
public abstract class DAOTestBase
{
public void testSimple()
{
// dummy assertion
assertTrue(true, "Hello");
}
}
@Test(groups = "fast")
public class TestMockDAO extends DAOTestBase
{
// setUp/tearDown and helper methods for mock
}
@Test(groups = "slow")
public class TestDAO extends DAOTestBase
{
// setUp/tearDown and helper methods for real DB
}
Unfortunately this doesn't work - TestNG doesn't think that the testSimple method is a test and hence won't run it. So instead I tried to annotate the testSimple method (or the DAOTestBase class):
A
@Testannotation without any groups will lead to the same effect - the test won't run for eitherfastnorslowgroups.A
@Testannotation with groupsfastandslowwill lead to the opposite effect - bothTestMockDAOandTestDAOwill be run regardless of whether only fast or only slow tests should be run.A
@Testannotation with a different group, saycommon, plus addeddependsOnGroups="common"annotations in bothTestMockDAOandTestDAOwill also not work unlesscommonis included in the groups to run which leads again to case 2 above (bothTestMockDAOandTestDAOare run).
In the end, what I'm looking for is a way to be able to define the group for the inherited tests in the sub class, but it seems as if the @Test annotation is only applied to test methods in that very same class, not also to inherited methods that don't have a @Test annotation. Is there any other way to achieve this (without overriding all methods in the sub classes) ?