Payum\Paypal\Rest\Tests\Action\CaptureActionTest::shouldSupportApiContext PHP Method

shouldSupportApiContext() public method

    public function shouldSupportApiContext()
    {
        $action = new CaptureAction();
        /** @var OAuthTokenCredential $tokenMock */
        $tokenMock = $this->getMock(OAuthTokenCredential::class, [], [], '', false);
        $apiContext = new ApiContext($tokenMock);
        $action->setApi($apiContext);
    }