You are here

public function ExchangeRateProviderManagerTest::setUp in Currency 8.3

Overrides UnitTestCase::setUp

File

tests/src/Unit/Plugin/Currency/ExchangeRateProvider/ExchangeRateProviderManagerTest.php, line 66

Class

ExchangeRateProviderManagerTest
@coversDefaultClass \Drupal\currency\Plugin\Currency\ExchangeRateProvider\ExchangeRateProviderManager

Namespace

Drupal\Tests\currency\Unit\Plugin\Currency\ExchangeRateProvider

Code

public function setUp() : void {
  $this->classResolver = $this
    ->createMock(ClassResolverInterface::class);
  $this->discovery = $this
    ->createMock(DiscoveryInterface::class);
  $this->factory = $this
    ->getMockBuilder(DefaultFactory::class)
    ->disableOriginalConstructor()
    ->getMock();
  $this->moduleHandler = $this
    ->createMock(ModuleHandlerInterface::class);
  $this->cache = $this
    ->createMock(CacheBackendInterface::class);
  $namespaces = new ArrayObject();
  $this->sut = new ExchangeRateProviderManager($namespaces, $this->cache, $this->moduleHandler, $this->classResolver);
  $discovery_property = new \ReflectionProperty($this->sut, 'discovery');
  $discovery_property
    ->setAccessible(TRUE);
  $discovery_property
    ->setValue($this->sut, $this->discovery);
  $factory_property = new \ReflectionProperty($this->sut, 'factory');
  $factory_property
    ->setAccessible(TRUE);
  $factory_property
    ->setValue($this->sut, $this->factory);
}