| Total Complexity | 5 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class Typo3Test extends \PHPUnit\Framework\TestCase |
||
| 13 | { |
||
| 14 | private $object; |
||
| 15 | |||
| 16 | |||
| 17 | protected function setUp() : void |
||
| 22 | } |
||
| 23 | |||
| 24 | |||
| 25 | protected function tearDown() : void |
||
| 26 | { |
||
| 27 | unset( $this->object ); |
||
| 28 | } |
||
| 29 | |||
| 30 | |||
| 31 | public function testTransform() |
||
| 32 | { |
||
| 33 | $this->assertInstanceOf( '\Aimeos\Base\View\Helper\Request\Typo3', $this->object->transform() ); |
||
| 34 | } |
||
| 35 | |||
| 36 | |||
| 37 | public function testGetClientAddress() |
||
| 40 | } |
||
| 41 | |||
| 42 | |||
| 43 | public function testGetTarget() |
||
| 46 | } |
||
| 47 | } |
||
| 48 |