1 | <?php |
||
22 | class InMemoryRouteManagerTest extends \PHPUnit_Framework_TestCase |
||
23 | { |
||
24 | /** |
||
25 | * @var MockRouteManager |
||
26 | */ |
||
27 | private $mockManager; |
||
28 | |||
29 | /** |
||
30 | * @var InMemoryRouteManager |
||
31 | */ |
||
32 | private $inMemoryManager; |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | protected function setUp() |
||
42 | /** |
||
43 | * @expectedException \Tadcka\Component\Routing\Exception\RoutingRuntimeException |
||
44 | */ |
||
45 | public function testAddMethodWithEmptyName() |
||
49 | } |
||
50 |