Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function testChecksThatRequiredValuesArePassed() |
||
14 | { |
||
15 | $details = new PaymentDetails(); |
||
16 | |||
17 | $this->expectExceptionMessage("Message " . PaymentDetails::class . "'s field tag 3(time) is required but has no value"); |
||
18 | |||
19 | $details->serialize(new NonDiscardingBinaryCodec()); |
||
20 | } |
||
21 | } |
||
22 |