| Total Complexity | 4 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class T3RouterTest extends \PHPUnit\Framework\TestCase |
||
| 14 | { |
||
| 15 | private $view; |
||
| 16 | |||
| 17 | |||
| 18 | protected function setUp() : void |
||
| 19 | { |
||
| 20 | if( !interface_exists( '\TYPO3\CMS\Core\Routing\RouterInterface' ) ) { |
||
| 21 | $this->markTestSkipped( 'TYPO3 Router not available' ); |
||
| 22 | } |
||
| 23 | |||
| 24 | $this->view = new \Aimeos\Base\View\Standard(); |
||
| 25 | } |
||
| 26 | |||
| 27 | |||
| 28 | protected function tearDown() : void |
||
| 29 | { |
||
| 30 | unset( $this->view ); |
||
| 31 | } |
||
| 32 | |||
| 33 | |||
| 34 | public function testTransform() |
||
| 46 | } |
||
| 47 | } |
||
| 48 |