-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
9,135 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?php | ||
|
||
|
||
use Mollie\WooCommerce\Gateway\GatewayModule; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class GatewayModuleTest extends TestCase | ||
{ | ||
|
||
public function testMaybeDisableBankTransferGateway() | ||
{ | ||
} | ||
|
||
public function testGatewaySurchargeHandling() | ||
{ | ||
} | ||
|
||
public function testSetOrderPaidByOtherGateway() | ||
{ | ||
} | ||
|
||
public function testInstantiatePaymentMethodGateways() | ||
{ | ||
} | ||
|
||
public function testMaybeDisableApplePayGateway() | ||
{ | ||
} | ||
|
||
public function testDisableSEPAInCheckout() | ||
{ | ||
} | ||
|
||
public function testDisableMollieOnPaymentMethodChange() | ||
{ | ||
} | ||
|
||
public function testMolliePayPalButtonHandling() | ||
{ | ||
} | ||
|
||
public function testMollieApplePayDirectHandling() | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<?php | ||
|
||
|
||
use Mollie\WooCommerce\Gateway\MolliePaymentGateway; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class MolliePaymentGatewayTest extends TestCase | ||
{ | ||
|
||
public function testInit_form_fields() | ||
{ | ||
} | ||
|
||
public function testThankyou_page() | ||
{ | ||
} | ||
|
||
public function testGetSelectedIssuer() | ||
{ | ||
} | ||
|
||
public function testDisplayInstructions() | ||
{ | ||
} | ||
|
||
public function testGetProcessPaymentRedirect() | ||
{ | ||
} | ||
|
||
public function testGet_icon() | ||
{ | ||
} | ||
|
||
public function testIs_available() | ||
{ | ||
} | ||
|
||
public function testValidate_multi_select_countries_field() | ||
{ | ||
} | ||
|
||
public function testProcess_admin_options() | ||
{ | ||
} | ||
|
||
public function testOnOrderReceivedTitle() | ||
{ | ||
} | ||
|
||
public function testInit_settings() | ||
{ | ||
} | ||
|
||
public function testAdmin_options() | ||
{ | ||
} | ||
|
||
public function testGetReturnRedirectUrlForOrder() | ||
{ | ||
} | ||
|
||
public function testGetMollieMethod() | ||
{ | ||
} | ||
|
||
public function testOnOrderReceivedText() | ||
{ | ||
} | ||
|
||
public function testGetIconUrl() | ||
{ | ||
} | ||
|
||
public function testPaymentConfirmationAfterCoupleOfDays() | ||
{ | ||
} | ||
|
||
public function testProcess_refund() | ||
{ | ||
} | ||
|
||
public function testProcess_payment() | ||
{ | ||
} | ||
|
||
public function testGet_transaction_url() | ||
{ | ||
} | ||
|
||
public function testPayment_fields() | ||
{ | ||
} | ||
|
||
public function testHandlePaidOrderWebhook() | ||
{ | ||
} | ||
} |
Oops, something went wrong.