From 03d94e780d38e4188590e2fd8c1b6998057924ad Mon Sep 17 00:00:00 2001 From: Mario de Frutos Date: Tue, 11 Nov 2014 17:28:53 +0100 Subject: [PATCH] Added phpunit comment with group option --- UltiSnips/php_phpunit.snippets | 6 ++++++ 1 file changed, 6 insertions(+) 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