Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | public function testFromApiThrowsCareerjetExceptionWhenLocationIsNotPresent() |
||
11 | { |
||
12 | $this->expectException(\Jobles\Careerjet\Exception\CareerjetException::class); |
||
13 | $this->expectExceptionMessage('Invalid API job'); |
||
14 | |||
15 | JobWithBrazilianLocationsBuilder::fromApi(new \stdClass, new Job); |
||
16 | } |
||
17 | |||
32 |