Created
September 24, 2015 03:30
-
-
Save joe-gaudet-hs/ecb032f57b0479ce842a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abstract class FooTest extends PHPUnit_Framework_Test | |
{ | |
// general setup shit | |
} | |
class Foo_BarTest extends FooTest | |
{ | |
/** | |
* @test | |
*/ | |
public function it_shouldDoBar_whhn_qux | |
{ | |
} | |
} | |
class Foo_BazTest extends FooTest | |
{ | |
/** | |
* @test | |
*/ | |
public function it_shouldDoBaz_when_qux | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment