Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function testNonScalarParameterValue() |
||
28 | { |
||
29 | $this->expectExceptionMessage('The "erroneous" value must be a scalar or null'); |
||
30 | |||
31 | new Task( |
||
32 | new Profile('test'), |
||
33 | new Job\DummyJob, |
||
34 | [ |
||
35 | 'int' => 123, |
||
36 | 'string' => 'foobar', |
||
37 | 'null' => null, |
||
38 | 'bool' => true, |
||
39 | 'erroneous' => [], |
||
40 | ] |
||
73 |