@@ -455,8 +455,6 @@ public function test_hasPaymentMethodAvailableSubTypes_CC()
455
455
'getAmex ' ,
456
456
'getDiners ' ,
457
457
'getJCB ' ,
458
- 'getMaestroInternational ' ,
459
- 'getMaestroUK ' ,
460
458
'getCarteBleue ' ,
461
459
'getSofortUeberweisung ' ,
462
460
'getGiropay ' ,
@@ -473,8 +471,6 @@ public function test_hasPaymentMethodAvailableSubTypes_CC()
473
471
$ oTestObject ->expects ($ this ->any ())->method ('getAmex ' )->will ($ this ->returnValue (false ));
474
472
$ oTestObject ->expects ($ this ->any ())->method ('getDiners ' )->will ($ this ->returnValue (false ));
475
473
$ oTestObject ->expects ($ this ->any ())->method ('getJCB ' )->will ($ this ->returnValue (false ));
476
- $ oTestObject ->expects ($ this ->any ())->method ('getMaestroInternational ' )->will ($ this ->returnValue (false ));
477
- $ oTestObject ->expects ($ this ->any ())->method ('getMaestroUK ' )->will ($ this ->returnValue (false ));
478
474
$ oTestObject ->expects ($ this ->any ())->method ('getCarteBleue ' )->will ($ this ->returnValue (false ));
479
475
$ oTestObject ->expects ($ this ->any ())->method ('getSofortUeberweisung ' )->will ($ this ->returnValue (false ));
480
476
$ oTestObject ->expects ($ this ->any ())->method ('getGiropay ' )->will ($ this ->returnValue (false ));
@@ -500,8 +496,6 @@ public function test_hasPaymentMethodAvailableSubTypes_SB()
500
496
'getAmex ' ,
501
497
'getDiners ' ,
502
498
'getJCB ' ,
503
- 'getMaestroInternational ' ,
504
- 'getMaestroUK ' ,
505
499
'getCarteBleue ' ,
506
500
'getSofortUeberweisung ' ,
507
501
'getGiropay ' ,
@@ -518,8 +512,6 @@ public function test_hasPaymentMethodAvailableSubTypes_SB()
518
512
$ oTestObject ->expects ($ this ->any ())->method ('getAmex ' )->will ($ this ->returnValue (false ));
519
513
$ oTestObject ->expects ($ this ->any ())->method ('getDiners ' )->will ($ this ->returnValue (false ));
520
514
$ oTestObject ->expects ($ this ->any ())->method ('getJCB ' )->will ($ this ->returnValue (false ));
521
- $ oTestObject ->expects ($ this ->any ())->method ('getMaestroInternational ' )->will ($ this ->returnValue (false ));
522
- $ oTestObject ->expects ($ this ->any ())->method ('getMaestroUK ' )->will ($ this ->returnValue (false ));
523
515
$ oTestObject ->expects ($ this ->any ())->method ('getCarteBleue ' )->will ($ this ->returnValue (false ));
524
516
$ oTestObject ->expects ($ this ->any ())->method ('getSofortUeberweisung ' )->will ($ this ->returnValue (false ));
525
517
$ oTestObject ->expects ($ this ->any ())->method ('getGiropay ' )->will ($ this ->returnValue (false ));
@@ -600,34 +592,6 @@ public function test_getJCB_Coverage()
600
592
$ this ->assertEquals (true , $ oTestObject ->getJCB ());
601
593
}
602
594
603
- /**
604
- * Testing getMaestroInternational vor Coverage
605
- *
606
- * @param void
607
- * @return void
608
- */
609
- public function test_getMaestroInternational_Coverage ()
610
- {
611
- $ oTestObject = $ this ->getMock ('fcPayOnePaymentView ' , array ('getConfigParam ' , 'isPaymentMethodAvailableToUser ' ));
612
- $ oTestObject ->expects ($ this ->any ())->method ('getConfigParam ' )->will ($ this ->returnValue (true ));
613
- $ oTestObject ->expects ($ this ->any ())->method ('isPaymentMethodAvailableToUser ' )->will ($ this ->returnValue (true ));
614
- $ this ->assertEquals (true , $ oTestObject ->getMaestroInternational ());
615
- }
616
-
617
- /**
618
- * Testing getMaestroUK vor Coverage
619
- *
620
- * @param void
621
- * @return void
622
- */
623
- public function test_getMaestroUK_Coverage ()
624
- {
625
- $ oTestObject = $ this ->getMock ('fcPayOnePaymentView ' , array ('getConfigParam ' , 'isPaymentMethodAvailableToUser ' ));
626
- $ oTestObject ->expects ($ this ->any ())->method ('getConfigParam ' )->will ($ this ->returnValue (true ));
627
- $ oTestObject ->expects ($ this ->any ())->method ('isPaymentMethodAvailableToUser ' )->will ($ this ->returnValue (true ));
628
- $ this ->assertEquals (true , $ oTestObject ->getMaestroUK ());
629
- }
630
-
631
595
/**
632
596
* Testing getCarteBleue vor Coverage
633
597
*
@@ -877,8 +841,6 @@ public function test_fcpoGetCCPaymentMetaData_Coverage()
877
841
'getAmex ' ,
878
842
'getDiners ' ,
879
843
'getJCB ' ,
880
- 'getMaestroInternational ' ,
881
- 'getMaestroUK ' ,
882
844
'getCarteBleue ' ,
883
845
'_fcpoGetCCPaymentMetaData ' ,
884
846
)
@@ -889,8 +851,6 @@ public function test_fcpoGetCCPaymentMetaData_Coverage()
889
851
$ oTestObject ->expects ($ this ->any ())->method ('getAmex ' )->will ($ this ->returnValue (true ));
890
852
$ oTestObject ->expects ($ this ->any ())->method ('getDiners ' )->will ($ this ->returnValue (true ));
891
853
$ oTestObject ->expects ($ this ->any ())->method ('getJCB ' )->will ($ this ->returnValue (true ));
892
- $ oTestObject ->expects ($ this ->any ())->method ('getMaestroInternational ' )->will ($ this ->returnValue (true ));
893
- $ oTestObject ->expects ($ this ->any ())->method ('getMaestroUK ' )->will ($ this ->returnValue (true ));
894
854
$ oTestObject ->expects ($ this ->any ())->method ('getCarteBleue ' )->will ($ this ->returnValue (true ));
895
855
$ oTestObject ->expects ($ this ->any ())->method ('_fcpoGetCCPaymentMetaData ' )->will ($ this ->returnValue ('someValue ' ));
896
856
@@ -901,8 +861,6 @@ public function test_fcpoGetCCPaymentMetaData_Coverage()
901
861
'someValue ' ,
902
862
'someValue ' ,
903
863
'someValue ' ,
904
- 'someValue ' ,
905
- 'someValue ' ,
906
864
);
907
865
$ aResponse = $ oTestObject ->fcpoGetCCPaymentMetaData ();
908
866
0 commit comments