Neos\Flow\Tests\Unit\Core\BootstrapTest::isCompileTimeCommandControllerChecksIfTheGivenCommandIdentifierRefersToACompileTimeController PHP Method

isCompileTimeCommandControllerChecksIfTheGivenCommandIdentifierRefersToACompileTimeController() public method

public isCompileTimeCommandControllerChecksIfTheGivenCommandIdentifierRefersToACompileTimeController ( $compiletimeCommandControllerIdentifiers, $givenCommandIdentifier, $expectedResult )
    public function isCompileTimeCommandControllerChecksIfTheGivenCommandIdentifierRefersToACompileTimeController($compiletimeCommandControllerIdentifiers, $givenCommandIdentifier, $expectedResult)
    {
        $bootstrap = new Bootstrap('Testing');
        foreach ($compiletimeCommandControllerIdentifiers as $compiletimeCommandControllerIdentifier) {
            $bootstrap->registerCompiletimeCommand($compiletimeCommandControllerIdentifier);
        }
        $this->assertSame($expectedResult, $bootstrap->isCompiletimeCommand($givenCommandIdentifier));
    }