| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function test_add_payment_method() { |
||
| 37 | $list = new PaymentMethodsList(); |
||
| 38 | $list->add_payment_method( Brands::VISA ); |
||
| 39 | $list->add_payment_method( Brands::MASTERCARD ); |
||
| 40 | $list->add_payment_method( Brands::AMERICAN_EXPRESS ); |
||
| 41 | |||
| 42 | $string = (string) $list; |
||
| 43 | |||
| 44 | $this->assertEquals( 'VISA;MasterCard;American Express', $string ); |
||
| 45 | } |
||
| 47 |