parser = new Query\QueryParser($db); } public function TestGeneric() { $matches = $this->parser->parse_join('table1.field1=table2.field2'); $this->assertEqual($matches['combined'], array( 'table1.field1', '=', 'table2.field2' )); } public function testGeneric2() { $matches = $this->parser->parse_join('db1.table1.field1!=db2.table2.field2'); $this->assertEqual($matches['combined'], array( 'db1.table1.field1','!=','db2.table2.field2' )); } public function testWUnderscore() { $matches = $this->parser->parse_join('table_1.field1 = tab_le2.field_2'); $this->assertEqual($matches['combined'], array( 'table_1.field1', '=', 'tab_le2.field_2' )); } public function testFunction() { $matches = $this->parser->parse_join('table1.field1 > SUM(3+5)'); $this->assertEqual($matches['combined'], array( 'table1.field1', '>', 'SUM(3+5)' )); } }