/**
  * @covers \com\github\gooh\InterfaceDistiller\Distillate::getInterfaceName
  * @covers \com\github\gooh\InterfaceDistiller\Distillate::setInterfaceName
  */
 public function testCanGetAndSetInterfaceName()
 {
     $this->distillate->setInterfaceName('NewInterface');
     $this->assertSame('NewInterface', $this->distillate->getInterfaceName());
 }