| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class ParamsListServiceTest extends TestCase |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Test getServiceName Method. |
||
| 24 | */ |
||
| 25 | public function testGetServiceName() |
||
| 26 | { |
||
| 27 | $paramsList = 'service=UM&routeId=_cinema_film_2174'; |
||
| 28 | $paramsListService = new ParamsListService($paramsList); |
||
| 29 | |||
| 30 | $this->assertEquals('u_m', $paramsListService->getServiceName()); |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Test getRouteId Method. |
||
| 35 | */ |
||
| 36 | public function testGetRouteId() |
||
| 42 | } |
||
| 43 | } |
||
| 44 |