Skip to content

Instantly share code, notes, and snippets.

@dantleech
Created June 7, 2016 19:03
Show Gist options
  • Select an option

  • Save dantleech/533e5053ddd2701eb56695664cad313d to your computer and use it in GitHub Desktop.

Select an option

Save dantleech/533e5053ddd2701eb56695664cad313d to your computer and use it in GitHub Desktop.
<?php
/**
* @BeforeMethods({"setUp"})
*/
class FoobarTest extends \PHPUnit_FrameworkTestCase
{
public function setUp()
{
// do some setup
}
/**
* @Subject()
* @Iterations(10)
*/
public function testFoobar()
{
// test something
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment