Skip to content

Instantly share code, notes, and snippets.

@joe-gaudet-hs
Created September 24, 2015 03:30
Show Gist options
  • Save joe-gaudet-hs/ecb032f57b0479ce842a to your computer and use it in GitHub Desktop.
Save joe-gaudet-hs/ecb032f57b0479ce842a to your computer and use it in GitHub Desktop.
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