Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class StandardTest extends \PHPUnit\Framework\TestCase |
||
13 | { |
||
14 | private $object; |
||
15 | |||
16 | |||
17 | protected function setUp() : void |
||
18 | { |
||
19 | $view = new \Aimeos\MW\View\Standard(); |
||
20 | $this->object = new \Aimeos\MW\View\Helper\Typemap\Standard( $view ); |
||
21 | } |
||
22 | |||
23 | |||
24 | protected function tearDown() : void |
||
25 | { |
||
26 | unset( $this->object ); |
||
27 | } |
||
28 | |||
29 | |||
30 | public function testTransform() |
||
39 | } |
||
40 | } |
||
41 |