You are here

public function PaymentStatusTest::testGetTypedConfig in Payment 8.2

@covers ::getTypedConfig

File

tests/src/Unit/Entity/PaymentStatusTest.php, line 127

Class

PaymentStatusTest
@coversDefaultClass \Drupal\payment\Entity\PaymentStatus

Namespace

Drupal\Tests\payment\Unit\Entity

Code

public function testGetTypedConfig() {
  $method = new \ReflectionMethod($this->sut, 'getTypedConfig');
  $method
    ->setAccessible(TRUE);
  $this
    ->assertSame($this->typedConfigManager, $method
    ->invoke($this->sut));
}