lithium\tests\cases\data\source\DatabaseTest::testNumericValueByIntrospection PHP Method

testNumericValueByIntrospection() public method

    public function testNumericValueByIntrospection()
    {
        $result = $this->_db->value('1');
        $this->assertIdentical(1, $result);
        $result = $this->_db->value('1.1');
        $this->assertIdentical(1.1, $result);
    }
DatabaseTest