Merge pull request #480 from ethervoid/phpunit_comment

Added phpunit comment with group option
This commit is contained in:
Honza Pokorny 2014-11-11 15:31:34 -04:00
commit 8c3caee775

View File

@ -30,3 +30,9 @@ expects($this->${1:once}())
->with($this->equalTo(${3})${4}) ->with($this->equalTo(${3})${4})
->will($this->returnValue(${5})); ->will($this->returnValue(${5}));
endsnippet endsnippet
snippet testcmt "phpunit comment with group" b
/**
* @group ${1}
*/
endsnippet