/**
  * @covers phpDocumentor\Transformer\Behaviour\Collection::removeBehaviour
  */
 public function testRemoveABehaviour()
 {
     // Arrange
     $behaviourMock = m::mock('phpDocumentor\\Transformer\\Behaviour\\BehaviourAbstract');
     $this->fixture->addBehaviour($behaviourMock);
     // Act
     $this->fixture->removeBehaviour($behaviourMock);
     // Assert
     $this->assertAttributeSame(array(), 'behaviours', $this->fixture);
 }