eZ\Publish\Core\REST\Common\Tests\Input\ParserToolsTest::testNormalParseBooleanValue PHP Method

testNormalParseBooleanValue() public method

    public function testNormalParseBooleanValue()
    {
        $tools = $this->getParserTools();
        $this->assertTrue($tools->parseBooleanValue('true'));
        $this->assertTrue($tools->parseBooleanValue(true));
        $this->assertFalse($tools->parseBooleanValue('false'));
        $this->assertFalse($tools->parseBooleanValue(false));
    }