| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class DispatchAwareTraitTest extends AbstractTest |
||
| 14 | { |
||
| 15 | public function testCallSameControllerWithEmptyParams() |
||
| 16 | { |
||
| 17 | $controller = new BaseControllerWithUtilityMethods(); |
||
| 18 | $controller->setRequest(new Request()); |
||
|
|
|||
| 19 | |||
| 20 | $response = $controller->call('hello'); |
||
| 21 | static::assertSame('hello', $response); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function testCallSameControllerWithParams() |
||
| 31 | } |
||
| 32 | } |
||
| 33 |