1 | <?php |
||
14 | class PaymentTest extends \PHPUnit\Framework\TestCase |
||
15 | { |
||
16 | protected $paymentInput = [ |
||
17 | 'id' => 1, |
||
18 | 'name' => 'PayPal', |
||
19 | 'description' => 'Payment with Paypal', |
||
20 | 'fee' => 0.2 |
||
21 | ]; |
||
22 | |||
23 | public function testCreateObject() |
||
35 | |||
36 | public function testPercentageFee() |
||
43 | |||
44 | public function testSetPriceFormat() |
||
58 | } |
||
59 |