Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | protected function setUp() : void |
||
20 | { |
||
21 | $this->view = \TestHelperJqadm::getView(); |
||
22 | $this->context = \TestHelperJqadm::getContext(); |
||
23 | |||
24 | $this->object = new \Aimeos\Admin\JQAdm\Dashboard\Order\Quick\Countorder\Standard( $this->context ); |
||
25 | $this->object = new \Aimeos\Admin\JQAdm\Common\Decorator\Page( $this->object, $this->context ); |
||
26 | $this->object->setAimeos( \TestHelperJqadm::getAimeos() ); |
||
27 | $this->object->setView( $this->view ); |
||
28 | } |
||
29 | |||
44 |