Is there currently a way to disable TestNG test based on a condition
I know you can currently disable test as so in TestNG:
@Test(en
You have two options:
Your annotation transformer would test the condition and then override the @Test annotation to add the attribute "enabled=false" if the condition is not satisfied.