1 | <?php |
||
19 | class SenderPluginManagerTest extends TestCase |
||
20 | { |
||
21 | /** |
||
22 | * @var SenderPluginManager |
||
23 | */ |
||
24 | protected $pluginManager; |
||
25 | |||
26 | public function setUp() |
||
30 | |||
31 | /** |
||
32 | * @expectedException RuntimeException |
||
33 | */ |
||
34 | public function testValidatePluginThrowsExceptionIfPluginIsInvalid() |
||
38 | |||
39 | public function testValidatePluginDoesNothingIfPluginIsValid() |
||
45 | |||
46 | /** |
||
47 | * @expectedException RuntimeException |
||
48 | */ |
||
49 | public function testValidateThrowsExceptionIfPluginIsInvalid() |
||
53 | |||
54 | public function testValidateDoesNothingIfPluginIsValid() |
||
60 | } |
||
61 |