| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function testCreateObject() |
||
| 24 | { |
||
| 25 | $payment = new Payment($this->paymentInput); |
||
| 26 | $payment->setFixed(); |
||
| 27 | |||
| 28 | $this->assertSame($this->paymentInput, [ |
||
| 29 | 'id' => $payment->getId(), |
||
| 30 | 'name' => $payment->getName(), |
||
| 31 | 'description' => $payment->getDescription(), |
||
| 32 | 'fee' => $payment->getFee(10), |
||
| 33 | ]); |
||
| 34 | } |
||
| 35 | |||
| 59 |