You are here

public function UnavailableTest::testGetSupportedCurrencies in Payment 8.2

@covers ::getSupportedCurrencies

File

tests/src/Unit/Plugin/Payment/Method/UnavailableTest.php, line 105

Class

UnavailableTest
@coversDefaultClass \Drupal\payment\Plugin\Payment\Method\Unavailable

Namespace

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

Code

public function testGetSupportedCurrencies() {
  $method = new \ReflectionMethod($this->sut, 'getSupportedCurrencies');
  $method
    ->setAccessible(TRUE);
  $this
    ->assertSame([], $method
    ->invoke($this->sut));
}