public function testQuoteArr()
 {
     $this->connection->connect();
     $this->assertEquals(array('null', "'1'", "'0'", "fo'o'bar", "123", "12.3", "'12.3'", "'12'"), $this->connection->quoteArr(array(null, true, false, new Expression("fo'o'bar"), 123, 12.3, '12.3', '12')));
 }