/**
  * @test
  */
 public function isTagIgnoredWorksWithOldConfiguration()
 {
     $settings = ['reflection' => ['ignoredTags' => ['ignored']]];
     $this->reflectionService->injectSettings($settings);
     $this->assertTrue($this->reflectionService->_call('isTagIgnored', 'ignored'));
     $this->assertFalse($this->reflectionService->_call('isTagIgnored', 'notignored'));
 }