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

isTagIgnoredReturnsFalseForTagsThatAreNotIgnored() public method

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