Hi all,
taking advantage of the work that Manas did early in his GSoC project, I enabled the JUnit(5) tests for one of the webservices (BioMart; just to see if they fail or not), and tagged them with "webservice". I've updated the pom.xml so that Maven does not run these tests by default (because they currently actually fail).
So, if you wish to use tagging for certain tests, this is the Java code to add to the JUnit class:
@Tag("someTag")
You can run Maven to just run tests with that tag with:
mvn -Djunit5.groups=webservice clean install
Grtz,
Egon
--