public function testMutatorThrowsExceptionAfterLastStack()
 {
     $this->line2->disable();
     $this->line3->disable();
     $this->mutator->getMutationStack();
     try {
         $this->mutator->getMutationStack();
     } catch (NoMoreMutationsException $e) {
     }
 }