Skip to content

Instantly share code, notes, and snippets.

@macghriogair
Created February 12, 2017 16:23
Show Gist options
  • Save macghriogair/dde4f37c3f9d65f0ad14e2ebc1cf7a3b to your computer and use it in GitHub Desktop.
Save macghriogair/dde4f37c3f9d65f0ad14e2ebc1cf7a3b to your computer and use it in GitHub Desktop.
sublime snippet phpunit test case
<snippet>
<content><![CDATA[
namespace Tests;
class ${TM_FILENAME/(.+)\..+|.*/$1/:name} extends \PHPUnit_Framework_TestCase
{
public function setUp()
{
}
public function tearDown()
{
}
/** @test */
public function ${2:it_}()
{
${3}
}
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>tclass</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.php</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment