/**
  * @covers phpDocumentor\Descriptor\InterfaceDescriptor::setConstants
  * @covers phpDocumentor\Descriptor\InterfaceDescriptor::getConstants
  */
 public function testSettingAndGettingConstants()
 {
     $this->assertInstanceOf('phpDocumentor\\Descriptor\\Collection', $this->fixture->getConstants());
     $mock = m::mock('phpDocumentor\\Descriptor\\Collection');
     $this->fixture->setConstants($mock);
     $this->assertSame($mock, $this->fixture->getConstants());
 }