/**
  * @covers \com\github\gooh\InterfaceDistiller\Distillate::addMethod
  * @covers \com\github\gooh\InterfaceDistiller\Distillate::getInterfaceMethods
  */
 public function testCanGetAndSetInterfaceMethods()
 {
     $method = $this->getMock('\\ReflectionMethod', array(), array(), '', false);
     $this->distillate->addMethod($method);
     $this->assertEquals(array($method), $this->distillate->getInterfaceMethods());
 }