| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 11 | public function testMerchantData(): void |
||
| 12 | { |
||
| 13 | $paymentResponse = new PaymentResponse( |
||
| 14 | '123', |
||
| 15 | new DateTimeImmutable(), |
||
| 16 | ResultCode::get(ResultCode::C0_OK), |
||
| 17 | 'foo message', |
||
| 18 | null, |
||
| 19 | null, |
||
| 20 | 'merchant data' |
||
| 21 | ); |
||
| 22 | |||
| 23 | self::assertSame('merchant data', $paymentResponse->getMerchantData()); |
||
| 24 | } |
||
| 27 |