You are here

public function PaymentMethodConfigurationTest::testGetTypedConfig in Payment 8.2

@covers ::getTypedConfig

File

tests/src/Unit/Entity/PaymentMethodConfigurationTest.php, line 211

Class

PaymentMethodConfigurationTest
@coversDefaultClass \Drupal\payment\Entity\PaymentMethodConfiguration

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));
}