What is the attribute that should be placed next to the PHP test method in order to ignore the test using PHPUnit ?
I know that for NUnit the attribute is :
You can tag the test with a group annotation and exclude those tests from a run.
/** * @group ignore */ public void ignoredTest() { ... }
Then you can run the all the tests but ignored tests like this:
phpunit --exclude-group ignore