| 1 | <?php |
||
| 17 | class ManagerTest extends \PHPUnit\Framework\TestCase |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var TemplateManager |
||
| 21 | */ |
||
| 22 | protected $manager; |
||
| 23 | |||
| 24 | public function setUp() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @expectedException RuntimeException |
||
| 31 | */ |
||
| 32 | public function testValidatePluginThrowsExceptionWhenClassIsInvalid() |
||
| 36 | |||
| 37 | public function testValidatePluginDoesNothingIfPluginIsValid() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @expectedException RuntimeException |
||
| 46 | */ |
||
| 47 | public function testValidateThrowsExceptionWhenClassIsInvalid() |
||
| 51 | |||
| 52 | public function testValidateDoesNothingIfPluginIsValid() |
||
| 58 | } |
||
| 59 |