Neos\Flow\Tests\Unit\Reflection\ReflectionServiceTest::isTagIgnoredReturnsFalseForTagsThatAreNotIgnored PHP 메소드

isTagIgnoredReturnsFalseForTagsThatAreNotIgnored() 공개 메소드

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