You are here

public function BasicTest::testGetRefundStatusId in Payment 8.2

Same name in this branch
  1. 8.2 tests/src/Unit/Plugin/Payment/MethodConfiguration/BasicTest.php \Drupal\Tests\payment\Unit\Plugin\Payment\MethodConfiguration\BasicTest::testGetRefundStatusId()
  2. 8.2 tests/src/Unit/Plugin/Payment/Method/BasicTest.php \Drupal\Tests\payment\Unit\Plugin\Payment\Method\BasicTest::testGetRefundStatusId()

@covers ::getRefundStatusId @covers ::setRefundStatusId

File

tests/src/Unit/Plugin/Payment/MethodConfiguration/BasicTest.php, line 143

Class

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

Namespace

Drupal\Tests\payment\Unit\Plugin\Payment\MethodConfiguration

Code

public function testGetRefundStatusId() {
  $status = $this
    ->randomMachineName();
  $this
    ->assertSame($this->sut, $this->sut
    ->setRefundStatusId($status));
  $this
    ->assertSame($status, $this->sut
    ->getRefundStatusId());
}