/**
  * @covers \com\github\gooh\InterfaceDistiller\Distillate::getExtendingInterfaces
  * @covers \com\github\gooh\InterfaceDistiller\Distillate::setExtendingInterfaces
  */
 public function testCanGetAndSetExtendingInterfaces()
 {
     $this->distillate->setExtendingInterfaces('Countable');
     $this->assertSame('Countable', $this->distillate->getExtendingInterfaces());
 }