Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function testFromApi(): void |
||
18 | { |
||
19 | $data = <<<'EOD' |
||
20 | { |
||
21 | "code" : "US", |
||
22 | "name" : "United States" |
||
23 | } |
||
24 | EOD; |
||
25 | |||
26 | $country = Country::fromApi(json_decode($data, true)); |
||
27 | $this->assertSame('US', $country->getCode()); |
||
28 | $this->assertSame('United States', $country->getName()); |
||
29 | } |
||
30 | } |
||
31 |