@@ -457,7 +457,6 @@ public function test_hasPaymentMethodAvailableSubTypes_CC()
457
457
'getJCB ' ,
458
458
'getCarteBleue ' ,
459
459
'getSofortUeberweisung ' ,
460
- 'getGiropay ' ,
461
460
'getEPS ' ,
462
461
'getPostFinanceEFinance ' ,
463
462
'getPostFinanceCard ' ,
@@ -473,7 +472,6 @@ public function test_hasPaymentMethodAvailableSubTypes_CC()
473
472
$ oTestObject ->expects ($ this ->any ())->method ('getJCB ' )->will ($ this ->returnValue (false ));
474
473
$ oTestObject ->expects ($ this ->any ())->method ('getCarteBleue ' )->will ($ this ->returnValue (false ));
475
474
$ oTestObject ->expects ($ this ->any ())->method ('getSofortUeberweisung ' )->will ($ this ->returnValue (false ));
476
- $ oTestObject ->expects ($ this ->any ())->method ('getGiropay ' )->will ($ this ->returnValue (false ));
477
475
$ oTestObject ->expects ($ this ->any ())->method ('getEPS ' )->will ($ this ->returnValue (false ));
478
476
$ oTestObject ->expects ($ this ->any ())->method ('getPostFinanceCard ' )->will ($ this ->returnValue (false ));
479
477
$ oTestObject ->expects ($ this ->any ())->method ('getIdeal ' )->will ($ this ->returnValue (false ));
@@ -498,7 +496,6 @@ public function test_hasPaymentMethodAvailableSubTypes_SB()
498
496
'getJCB ' ,
499
497
'getCarteBleue ' ,
500
498
'getSofortUeberweisung ' ,
501
- 'getGiropay ' ,
502
499
'getEPS ' ,
503
500
'getPostFinanceEFinance ' ,
504
501
'getPostFinanceCard ' ,
@@ -514,7 +511,6 @@ public function test_hasPaymentMethodAvailableSubTypes_SB()
514
511
$ oTestObject ->expects ($ this ->any ())->method ('getJCB ' )->will ($ this ->returnValue (false ));
515
512
$ oTestObject ->expects ($ this ->any ())->method ('getCarteBleue ' )->will ($ this ->returnValue (false ));
516
513
$ oTestObject ->expects ($ this ->any ())->method ('getSofortUeberweisung ' )->will ($ this ->returnValue (false ));
517
- $ oTestObject ->expects ($ this ->any ())->method ('getGiropay ' )->will ($ this ->returnValue (false ));
518
514
$ oTestObject ->expects ($ this ->any ())->method ('getEPS ' )->will ($ this ->returnValue (false ));
519
515
$ oTestObject ->expects ($ this ->any ())->method ('getPostFinanceCard ' )->will ($ this ->returnValue (false ));
520
516
$ oTestObject ->expects ($ this ->any ())->method ('getIdeal ' )->will ($ this ->returnValue (false ));
@@ -620,20 +616,6 @@ public function test_getSofortUeberweisung_Coverage()
620
616
$ this ->assertEquals (true , $ oTestObject ->getSofortUeberweisung ());
621
617
}
622
618
623
- /**
624
- * Testing getGiropay vor Coverage
625
- *
626
- * @param void
627
- * @return void
628
- */
629
- public function test_getGiropay_Coverage ()
630
- {
631
- $ oTestObject = $ this ->getMock ('fcPayOnePaymentView ' , array ('getConfigParam ' , 'isPaymentMethodAvailableToUser ' ));
632
- $ oTestObject ->expects ($ this ->any ())->method ('getConfigParam ' )->will ($ this ->returnValue (true ));
633
- $ oTestObject ->expects ($ this ->any ())->method ('isPaymentMethodAvailableToUser ' )->will ($ this ->returnValue (true ));
634
- $ this ->assertEquals (true , $ oTestObject ->getGiropay ());
635
- }
636
-
637
619
/**
638
620
* Testing getEPS vor Coverage
639
621
*
@@ -878,7 +860,6 @@ public function test_fcpoGetOnlinePaymentMetaData_Coverage()
878
860
$ oTestObject = $ this ->getMock (
879
861
'fcPayOnePaymentView ' , array (
880
862
'getSofortUeberweisung ' ,
881
- 'getGiropay ' ,
882
863
'getEPS ' ,
883
864
'getPostFinanceEFinance ' ,
884
865
'getPostFinanceCard ' ,
@@ -890,7 +871,6 @@ public function test_fcpoGetOnlinePaymentMetaData_Coverage()
890
871
);
891
872
892
873
$ oTestObject ->expects ($ this ->any ())->method ('getSofortUeberweisung ' )->will ($ this ->returnValue (true ));
893
- $ oTestObject ->expects ($ this ->any ())->method ('getGiropay ' )->will ($ this ->returnValue (true ));
894
874
$ oTestObject ->expects ($ this ->any ())->method ('getEPS ' )->will ($ this ->returnValue (true ));
895
875
$ oTestObject ->expects ($ this ->any ())->method ('getPostFinanceEFinance ' )->will ($ this ->returnValue (true ));
896
876
$ oTestObject ->expects ($ this ->any ())->method ('getPostFinanceCard ' )->will ($ this ->returnValue (true ));
0 commit comments