/**
  * @covers ::setCurrencyAmountFormatterManager
  * @covers ::getCurrencyAmountFormatterManager
  */
 public function testGetCurrencyAmountFormatterManager()
 {
     $method = new \ReflectionMethod($this->sut, 'getCurrencyAmountFormatterManager');
     $method->setAccessible(TRUE);
     $this->assertSame($this->sut, $this->sut->setCurrencyAmountFormatterManager($this->currencyAmountFormatterManager));
     $this->assertSame($this->currencyAmountFormatterManager, $method->invoke($this->sut));
 }