gatewayPaymentId)->toBe('pay_123') ->and($r->confirmationUrl)->toBe('https://yoomoney.ru/checkout/pay_123'); }); it('WebhookVerifyResult различает успех и прочие статусы', function () { $ok = new WebhookVerifyResult('pay_123', 'succeeded', '500.00', 'card'); $pending = new WebhookVerifyResult('pay_9', 'pending', '500.00', null); expect($ok->isSucceeded())->toBeTrue() ->and($pending->isSucceeded())->toBeFalse(); });