Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 11 |
Ratio | 100 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function testCreateObject() |
||
24 | { |
||
25 | $shipping = new Shipping($this->shippingInput); |
||
26 | |||
27 | $this->assertSame($this->shippingInput, [ |
||
28 | 'id' => $shipping->getId(), |
||
29 | 'name' => $shipping->getName(), |
||
30 | 'description' => $shipping->getDescription(), |
||
31 | 'cost' => $shipping->getCost(), |
||
32 | ]); |
||
33 | } |
||
34 | |||
57 |