public function PaymentMethodBaseTest::testExecutePaymentWithoutPayment in Payment 8.2
@covers ::executePayment
File
- tests/
src/ Unit/ Plugin/ Payment/ Method/ PaymentMethodBaseTest.php, line 192
Class
- PaymentMethodBaseTest
- @coversDefaultClass \Drupal\payment\Plugin\Payment\Method\PaymentMethodBase
Namespace
Drupal\Tests\payment\Unit\Plugin\Payment\MethodCode
public function testExecutePaymentWithoutPayment() {
$this
->expectException(\Exception::class);
$this->sut
->executePayment();
}