-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from michielgerritsen/feature/methods-test
Feature/methods test
- Loading branch information
Showing
19 changed files
with
215 additions
and
6 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
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
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class BancontactTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Bancontact::class; | ||
|
||
protected $code = 'bancontact'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class BanktransferTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Banktransfer::class; | ||
|
||
protected $code = 'banktransfer'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class BelfiusTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Belfius::class; | ||
|
||
protected $code = 'belfius'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class CreditcardTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Creditcard::class; | ||
|
||
protected $code = 'creditcard'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class EpsTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Eps::class; | ||
|
||
protected $code = 'eps'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class GiftcardTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Giftcard::class; | ||
|
||
protected $code = 'giftcard'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class GiropayTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Giropay::class; | ||
|
||
protected $code = 'giropay'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class IdealTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Ideal::class; | ||
|
||
protected $code = 'ideal'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class InghomepayTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Inghomepay::class; | ||
|
||
protected $code = 'inghomepay'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class KbcTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Kbc::class; | ||
|
||
protected $code = 'kbc'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class KlarnapaylaterTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Klarnapaylater::class; | ||
|
||
protected $code = 'klarnapaylater'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class KlarnasliceitTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Klarnasliceit::class; | ||
|
||
protected $code = 'klarnasliceit'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class PaymentlinkTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Paymentlink::class; | ||
|
||
protected $code = 'paymentlink'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class PaypalTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Paypal::class; | ||
|
||
protected $code = 'paypal'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class PaysafecardTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Paysafecard::class; | ||
|
||
protected $code = 'paysafecard'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class Przelewy24Test extends AbstractMethodTest | ||
{ | ||
protected $instance = Przelewy24::class; | ||
|
||
protected $code = 'przelewy24'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Mollie\Payment\Model\Methods; | ||
|
||
use Mollie\Payment\Tests\Unit\Model\Methods\AbstractMethodTest; | ||
|
||
class SofortTest extends AbstractMethodTest | ||
{ | ||
protected $instance = Sofort::class; | ||
|
||
protected $code = 'sofort'; | ||
} |