You are here

public function BasicTest::testGetSettablePaymentStatuses in Payment 8.2

@covers ::getSettablePaymentStatuses

File

tests/src/Unit/Plugin/Payment/Method/BasicTest.php, line 310

Class

BasicTest
@coversDefaultClass \Drupal\payment\Plugin\Payment\Method\Basic

Namespace

Drupal\Tests\payment\Unit\Plugin\Payment\Method

Code

public function testGetSettablePaymentStatuses() {
  $account = $this
    ->createMock(AccountInterface::class);
  $payment = $this
    ->createMock(PaymentInterface::class);
  $this
    ->assertSame([], $this->sut
    ->getSettablePaymentStatuses($account, $payment));
}