You are here

function OperationResultTest::testGetCompletionResponse in Payment 8.2

@covers ::getCompletionResponse @covers ::__construct

File

tests/src/Unit/OperationResultTest.php, line 53

Class

OperationResultTest
@coversDefaultClass \Drupal\payment\OperationResult

Namespace

Drupal\Tests\payment\Unit

Code

function testGetCompletionResponse() {
  $this->sut = new OperationResult();
  $this
    ->assertNULL($this->sut
    ->getCompletionResponse());
  $this->sut = new OperationResult($this->response);
  $this
    ->assertSame($this->response, $this->sut
    ->getCompletionResponse());
}