Skip to content

Instantly share code, notes, and snippets.

@jasonrobertfox
Created December 30, 2012 02:04
Show Gist options
  • Save jasonrobertfox/4410545 to your computer and use it in GitHub Desktop.
Save jasonrobertfox/4410545 to your computer and use it in GitHub Desktop.
Sublime Snippet: PHP unit test class.
<snippet>
<content><![CDATA[
namespace ${1:namespace};
/**
* @package ${1:namespace}
*/
class ${TM_FILENAME/(.+)\..+|.*/$1/:name} extends \PHPUnit_Framework_TestCase
{
${0}
}
]]></content>
<tabTrigger>test-class</tabTrigger>
<scope>source.php</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment