atk4\data\tests\TypecastingTest::testBadTimestamp PHP Method

testBadTimestamp() public method

public testBadTimestamp ( )
    public function testBadTimestamp()
    {
        $sql_time = '20blah16-10-25 11:44:08';
        $a = ['types' => [['date' => $sql_time]]];
        $this->setDB($a);
        $db = new Persistence_SQL($this->db->connection);
        $m = new Model($db, ['table' => 'types']);
        $m->addField('ts', ['actual' => 'date', 'type' => 'datetime']);
        $m->loadAny();
    }