Skip to content

Instantly share code, notes, and snippets.

@byrontuckett
Last active September 16, 2017 04:11
Show Gist options
  • Select an option

  • Save byrontuckett/c1d35d726642608a2f2ad2b55cfb2d59 to your computer and use it in GitHub Desktop.

Select an option

Save byrontuckett/c1d35d726642608a2f2ad2b55cfb2d59 to your computer and use it in GitHub Desktop.
NewTestMethod.sublime-snippet. Kudos to Adam Wathan's TDD course...
<snippet>
<content><![CDATA[
/** @test */
function ${1:sexy_test_name_here}()
{
// Arrange
${3}
// Act
${4}
// Assert
${5}
}
]]></content>
<tabTrigger>test</tabTrigger>
<scope>source.php</scope>
</snippet>
@byrontuckett
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment