You are here

class HistoricalRatesTest in Currency 8.3

@coversDefaultClass \Drupal\currency\Plugin\Currency\ExchangeRateProvider\HistoricalRates

@group Currency

Hierarchy

Expanded class hierarchy of HistoricalRatesTest

File

tests/src/Unit/Plugin/Currency/ExchangeRateProvider/HistoricalRatesTest.php, line 14

Namespace

Drupal\Tests\currency\Unit\Plugin\Currency\ExchangeRateProvider
View source
class HistoricalRatesTest extends UnitTestCase {

  /**
   * The class under test.
   *
   * @var \Drupal\currency\Plugin\Currency\ExchangeRateProvider\HistoricalRates
   */
  protected $sut;

  /**
   * {@inheritdoc}
   */
  public function setUp() : void {
    $configuration = array();
    $plugin_id = $this
      ->randomMachineName();
    $plugin_definition = array();
    $this->sut = new HistoricalRates($configuration, $plugin_id, $plugin_definition);
  }

  /**
   * @covers ::load
   */
  public function testLoad() {
    $source_currency_code = 'EUR';
    $destination_currency_code = 'NLG';
    $exchange_rate = '2.20371';
    $this
      ->assertSame($exchange_rate, $this->sut
      ->load($source_currency_code, $destination_currency_code)
      ->getRate());
  }

  /**
   * @covers ::loadMultiple
   */
  public function testLoadMultiple() {
    $source_currency_code = 'EUR';
    $destination_currency_code_a = 'NLG';
    $rate_a = '2.20371';
    $destination_currency_code_b = 'BEF';
    $rate_b = '40.3399';
    $exchange_rates = $this->sut
      ->loadMultiple([
      $source_currency_code => [
        $destination_currency_code_a,
        $destination_currency_code_b,
      ],
    ]);
    $this
      ->assertSame($rate_a, $exchange_rates[$source_currency_code][$destination_currency_code_a]
      ->getRate());
    $this
      ->assertSame($rate_b, $exchange_rates[$source_currency_code][$destination_currency_code_b]
      ->getRate());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
HistoricalRatesTest::$sut protected property The class under test.
HistoricalRatesTest::setUp public function Overrides UnitTestCase::setUp
HistoricalRatesTest::testLoad public function @covers ::load
HistoricalRatesTest::testLoadMultiple public function @covers ::loadMultiple
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.