diff --git a/UltiSnips/php_phpunit.snippets b/UltiSnips/php_phpunit.snippets index 1a310a1..e928bb1 100644 --- a/UltiSnips/php_phpunit.snippets +++ b/UltiSnips/php_phpunit.snippets @@ -30,3 +30,9 @@ expects($this->${1:once}()) ->with($this->equalTo(${3})${4}) ->will($this->returnValue(${5})); endsnippet + +snippet testcmt "phpunit comment with group" b +/** +* @group ${1} +*/ +endsnippet