Neos\Fusion\Tests\Functional\TypoScriptObjects\SimpleTypesTest::booleanSimpleTypeWorks PHP Method

booleanSimpleTypeWorks() public method

    public function booleanSimpleTypeWorks()
    {
        $view = $this->buildView();
        $view->setTypoScriptPath('simpleTypes/booleanFalse');
        $this->assertSame(false, $view->render());
        $view->setTypoScriptPath('simpleTypes/booleanTrue');
        $this->assertTrue($view->render());
    }