| 1 | <?php |
||
| 2 | |||
| 3 | require dirname(__DIR__) . '/tests/bootstrap.php'; |
||
| 4 | |||
| 5 | $gateway = new \ByTIC\Payments\Stripe\Gateway(); |
||
| 6 | $gateway->initialize(require TEST_FIXTURE_PATH . '/enviromentParams.php'); |
||
| 7 | |||
| 8 | $request = $gateway->completePurchase(); |
||
| 9 | $response = $request->send(); |
||
| 10 | |||
| 11 | $response->send(); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 12 |