静的関数を持つクラスのモックを作成するまで、PHPSpec を使用してクラスをテストしています。
私がテストしているクラス:
<?php
namespace App\Service;
class PaymentService
{
public function paymentVerification($orderId, array $data)
{
...
// Get the payment details
$payment = \PayPal\Api\Payment::get($data['payKey'], $apiContext);
...
}
}
PHPSpec クラス:
<?php
namespace App\Spec\Service;
use PhpSpec\ObjectBehavior;
use Prophecy\Argument;
class PaymentServiceSpec extends ObjectBehavior
{
/**
* @param \PayPal\API\Payment $payment
*/
function it_should_return_false_when_the_payment_verification_failed($payment)
{
...
// This throws a PHP Fatal error: Call to undefined method PhpSpec\Wrapper\Collaborator::get() in
$payment::get(Argument::exact($data['payKey']), Argument::exact($apiContext))->shouldReturn(array('foobar'));
...
$this->paymentVerification($orderId, $data)->shouldReturn(false);
}
}
\PayPal\Api\Payment::get($data['payKey'], $apiContext); をモックするにはどうすればよいですか ? 現在、これは PHP Fatal error: Call to undefined method PhpSpec\Wrapper\Collaborator::get() をスローします。
どうすればこれを正しく行うことができますか? 前もって感謝します!