| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class JobsTest extends \PHPUnit\Framework\TestCase |
||
| 13 | { |
||
| 14 | public function testCreateNotExisting() |
||
| 15 | { |
||
| 16 | $context = \TestHelper::context(); |
||
| 17 | $aimeos = \TestHelper::getAimeos(); |
||
| 18 | |||
| 19 | $this->expectException( \LogicException::class ); |
||
| 20 | \Aimeos\Controller\Jobs::create( $context, $aimeos, 'unknown' ); |
||
| 21 | } |
||
| 22 | |||
| 23 | |||
| 24 | public function testGet() |
||
| 32 | } |
||
| 33 | } |
||
| 34 |