Neos\Flow\Tests\Unit\Reflection\ReflectionServiceTest::isTagIgnoredReturnsFalseForTagsThatAreNotConfigured PHP Method

isTagIgnoredReturnsFalseForTagsThatAreNotConfigured() public method

    public function isTagIgnoredReturnsFalseForTagsThatAreNotConfigured()
    {
        $settings = ['reflection' => ['ignoredTags' => ['ignored' => true, 'notignored' => false]]];
        $this->reflectionService->injectSettings($settings);
        $this->assertFalse($this->reflectionService->_call('isTagIgnored', 'notconfigured'));
    }