1 | <?php |
||
19 | class PluginTest extends \PHPUnit_Framework_TestCase |
||
20 | { |
||
21 | /** |
||
22 | * @var Plugin |
||
23 | */ |
||
24 | protected $object; |
||
25 | |||
26 | /** |
||
27 | * Sets up the fixture, for example, opens a network connection. |
||
28 | * This method is called before a test is executed. |
||
29 | */ |
||
30 | protected function setUp() |
||
34 | |||
35 | /** |
||
36 | * Tears down the fixture, for example, closes a network connection. |
||
37 | * This method is called after a test is executed. |
||
38 | */ |
||
39 | protected function tearDown() |
||
42 | |||
43 | public function testConstructor() |
||
47 | } |
||
48 |