Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class StandardTest extends \PHPUnit\Framework\TestCase |
||
13 | { |
||
14 | private $context; |
||
15 | private $object; |
||
16 | private $view; |
||
17 | |||
18 | |||
19 | protected function setUp() : void |
||
20 | { |
||
21 | $this->view = \TestHelper::view(); |
||
22 | $this->context = \TestHelper::context(); |
||
23 | |||
24 | $this->object = new \Aimeos\Admin\JQAdm\Dashboard\Notify\Standard( $this->context ); |
||
25 | $this->object->setAimeos( \TestHelper::getAimeos() ); |
||
26 | $this->object->setView( $this->view ); |
||
27 | } |
||
28 | |||
29 | |||
30 | protected function tearDown() : void |
||
33 | } |
||
34 | |||
35 | |||
36 | public function testSearch() |
||
41 | } |
||
42 | } |
||
43 |