RedUNIT\CUBRID\Setget::testBool PHP Method

testBool() public method

Test booleans.
public testBool ( ) : void
return void
    public function testBool()
    {
        asrt(setget(TRUE), "1");
        asrt(setget(FALSE), "0");
        asrt(setget("TRUE"), "TRUE");
        asrt(setget("FALSE"), "FALSE");
    }