| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function it_should_get_tenant_aware_prefixes(TenantAwarePathBuilderInterface $pathBuilder) |
||
| 32 | { |
||
| 33 | $pathsNames = ['routes', 'custom']; |
||
| 34 | $this->setRoutePathsNames($pathsNames); |
||
| 35 | $pathBuilder->build($pathsNames)->willReturn(['/swp/default/routes', '/swp/default/custom']); |
||
| 36 | $this->setPathBuilder($pathBuilder); |
||
| 37 | $this->getPrefixes()->shouldReturn(['/swp/default/routes', '/swp/default/custom']); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |