You are here

public function FormHelperTest::testCurrencyLocaleOptionsWithoutLimitation in Currency 8.3

@covers ::getCurrencyLocaleOptions

File

tests/src/Unit/FormHelperTest.php, line 149

Class

FormHelperTest
@coversDefaultClass \Drupal\currency\FormHelper

Namespace

Drupal\Tests\currency\Unit

Code

public function testCurrencyLocaleOptionsWithoutLimitation() {
  $this->currencyLocaleStorage
    ->expects($this
    ->once())
    ->method('loadMultiple')
    ->willReturn([]);
  $this
    ->assertSame([], $this->sut
    ->getCurrencyLocaleOptions(NULL));
}