Index: trunk/extensions/DonationInterface/tests/Adapter/GlobalCollect/AllTests.php |
— | — | @@ -20,12 +20,41 @@ |
21 | 21 | */ |
22 | 22 | |
23 | 23 | /** |
24 | | - * @see DonationInterface_Adapter_ServerTestCase |
| 24 | + * @see DonationInterface_Adapter_GlobalCollect_GlobalCollectTestCase |
25 | 25 | */ |
26 | | -require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'BankTransferTestCase.php'; |
27 | 26 | require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'GlobalCollectTestCase.php'; |
28 | 27 | |
29 | 28 | /** |
| 29 | + * @see DonationInterface_Adapter_GlobalCollect_GlobalCollectTestCase |
| 30 | + */ |
| 31 | +require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'BankTransferTestCase.php'; |
| 32 | + |
| 33 | +/** |
| 34 | + * @see DonationInterface_Adapter_GlobalCollect_RealTimeBankTransferEnetsTestCase |
| 35 | + */ |
| 36 | +require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'RealTimeBankTransferEnetsTestCase.php'; |
| 37 | + |
| 38 | +/** |
| 39 | + * @see DonationInterface_Adapter_GlobalCollect_RealTimeBankTransferEpsTestCase |
| 40 | + */ |
| 41 | +require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'RealTimeBankTransferEpsTestCase.php'; |
| 42 | + |
| 43 | +/** |
| 44 | + * @see DonationInterface_Adapter_GlobalCollect_RealTimeBankTransferIdealTestCase |
| 45 | + */ |
| 46 | +require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'RealTimeBankTransferIdealTestCase.php'; |
| 47 | + |
| 48 | +/** |
| 49 | + * @see DonationInterface_Adapter_GlobalCollect_RealTimeBankTransferNordeaSweedenTestCase |
| 50 | + */ |
| 51 | +require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'RealTimeBankTransferNordeaSweedenTestCase.php'; |
| 52 | + |
| 53 | +/** |
| 54 | + * @see DonationInterface_Adapter_GlobalCollect_RealTimeBankTransferSofortuberweisungTestCase |
| 55 | + */ |
| 56 | +require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'RealTimeBankTransferSofortuberweisungTestCase.php'; |
| 57 | + |
| 58 | +/** |
30 | 59 | * AllTests |
31 | 60 | */ |
32 | 61 | class DonationInterface_Adapter_GlobalCollect_AllTests |
— | — | @@ -53,9 +82,29 @@ |
54 | 83 | { |
55 | 84 | $suite = new PHPUnit_Framework_TestSuite( 'Donation Interface - Adapter Suite' ); |
56 | 85 | |
57 | | - $suite->addTestSuite( 'DonationInterface_Adapter_GlobalCollect_BankTransferTestCase' ); |
| 86 | + // General adapter tests |
58 | 87 | $suite->addTestSuite( 'DonationInterface_Adapter_GlobalCollect_GlobalCollectTestCase' ); |
59 | 88 | |
| 89 | + // Bank transfer tests |
| 90 | + $suite->addTestSuite( 'DonationInterface_Adapter_GlobalCollect_BankTransferTestCase' ); |
| 91 | + |
| 92 | + // Real time bank transfer tests |
| 93 | + |
| 94 | + // eNets |
| 95 | + $suite->addTestSuite( 'DonationInterface_Adapter_GlobalCollect_RealTimeBankTransferEnetsTestCase' ); |
| 96 | + |
| 97 | + // eps Online-Überweisung |
| 98 | + $suite->addTestSuite( 'DonationInterface_Adapter_GlobalCollect_RealTimeBankTransferEpsTestCase' ); |
| 99 | + |
| 100 | + // Ideal |
| 101 | + $suite->addTestSuite( 'DonationInterface_Adapter_GlobalCollect_RealTimeBankTransferIdealTestCase' ); |
| 102 | + |
| 103 | + // Nordea (Sweeden) |
| 104 | + $suite->addTestSuite( 'DonationInterface_Adapter_GlobalCollect_RealTimeBankTransferNordeaSweedenTestCase' ); |
| 105 | + |
| 106 | + // eNETS |
| 107 | + $suite->addTestSuite( 'DonationInterface_Adapter_GlobalCollect_RealTimeBankTransferSofortuberweisungTestCase' ); |
| 108 | + |
60 | 109 | return $suite; |
61 | 110 | } |
62 | 111 | } |
Index: trunk/extensions/DonationInterface/tests/Adapter/GlobalCollect/RealTimeBankTransferSofortuberweisungTestCase.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 | * GNU General Public License for more details. |
17 | 17 | * |
18 | | - * @since r98249 |
| 18 | + * @since r100824 |
19 | 19 | * @author Jeremy Postlethwaite <jpostlethwaite@wikimedia.org> |
20 | 20 | */ |
21 | 21 | |
Index: trunk/extensions/DonationInterface/tests/Adapter/GlobalCollect/RealTimeBankTransferEnetsTestCase.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 | * GNU General Public License for more details. |
17 | 17 | * |
18 | | - * @since r98249 |
| 18 | + * @since r100821 |
19 | 19 | * @author Jeremy Postlethwaite <jpostlethwaite@wikimedia.org> |
20 | 20 | */ |
21 | 21 | |
Index: trunk/extensions/DonationInterface/tests/Adapter/GlobalCollect/RealTimeBankTransferIdealTestCase.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 | * GNU General Public License for more details. |
17 | 17 | * |
18 | | - * @since r98249 |
| 18 | + * @since r100822 |
19 | 19 | * @author Jeremy Postlethwaite <jpostlethwaite@wikimedia.org> |
20 | 20 | */ |
21 | 21 | |
Index: trunk/extensions/DonationInterface/tests/Adapter/GlobalCollect/GlobalCollectTestCase.php |
— | — | @@ -59,7 +59,7 @@ |
60 | 60 | 'COUNTRYCODE' => 'country', |
61 | 61 | 'MERCHANTREFERENCE' => 'order_id', |
62 | 62 | 'RETURNURL' => 'returnto', |
63 | | - 'IPADDRESS' => 'user_ip', //TODO: Not sure if this should be OUR ip, or the user's ip. Hurm. |
| 63 | + 'IPADDRESS' => 'user_ip', |
64 | 64 | 'ISSUERID' => 'issuer_id', |
65 | 65 | 'PAYMENTPRODUCTID' => 'payment_product', |
66 | 66 | 'CVV' => 'cvv', |
Index: trunk/extensions/DonationInterface/tests/Adapter/GlobalCollect/RealTimeBankTransferNordeaSweedenTestCase.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 | * GNU General Public License for more details. |
17 | 17 | * |
18 | | - * @since r98249 |
| 18 | + * @since r100823 |
19 | 19 | * @author Jeremy Postlethwaite <jpostlethwaite@wikimedia.org> |
20 | 20 | */ |
21 | 21 | |
Index: trunk/extensions/DonationInterface/tests/Adapter/GlobalCollect/RealTimeBankTransferEpsTestCase.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 | * GNU General Public License for more details. |
17 | 17 | * |
18 | | - * @since r98249 |
| 18 | + * @since r100820 |
19 | 19 | * @author Jeremy Postlethwaite <jpostlethwaite@wikimedia.org> |
20 | 20 | */ |
21 | 21 | |