/**
  * @covers phpDocumentor\Descriptor\FileDescriptor::setInterfaces
  * @covers phpDocumentor\Descriptor\FileDescriptor::getInterfaces
  */
 public function testSetAndGetInterfaces()
 {
     $this->assertInstanceOf('phpDocumentor\\Descriptor\\Collection', $this->fixture->getInterfaces());
     $mockInstance = m::mock('phpDocumentor\\Descriptor\\Collection');
     $mock = $mockInstance;
     $this->fixture->setInterfaces($mock);
     $this->assertSame($mockInstance, $this->fixture->getInterfaces());
 }