Skip to content

Instantly share code, notes, and snippets.

@vjandrea
Created January 19, 2017 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vjandrea/28aa7f91e3c3913e6bf265628c1a1c46 to your computer and use it in GitHub Desktop.
Save vjandrea/28aa7f91e3c3913e6bf265628c1a1c46 to your computer and use it in GitHub Desktop.
Atom snippets - PHPUnit placeholder test
'.source.php':
'PHPUnit test':
'prefix': 'test'
'body': """
/**
* @test
*/
public function ${1:test_name}()
{
\$this->markTestSkipped('This test has not been written yet');
}
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment