| Total Complexity | 5 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class StandardTest extends \PHPUnit\Framework\TestCase |
||
| 13 | { |
||
| 14 | private $object; |
||
| 15 | private $context; |
||
| 16 | |||
| 17 | |||
| 18 | protected function setUp() : void |
||
| 19 | { |
||
| 20 | $aimeos = \TestHelper::getAimeos(); |
||
| 21 | $this->context = \TestHelper::context(); |
||
| 22 | |||
| 23 | $this->object = new \Aimeos\Controller\Jobs\Basket\Cleanup\Standard( $this->context, $aimeos ); |
||
| 24 | } |
||
| 25 | |||
| 26 | |||
| 27 | protected function tearDown() : void |
||
| 30 | } |
||
| 31 | |||
| 32 | |||
| 33 | public function testGetName() |
||
| 34 | { |
||
| 35 | $this->assertEquals( 'Cleanup baskets', $this->object->getName() ); |
||
| 36 | } |
||
| 37 | |||
| 38 | |||
| 39 | public function testGetDescription() |
||
| 42 | } |
||
| 43 | |||
| 44 | |||
| 45 | public function testRun() |
||
| 48 | } |
||
| 49 | } |
||
| 50 |