Ejemplo n.º 1
0
 /**
  * @test
  * @dataProvider parseSQLDataProvider
  * @param string $sql The SQL to trim
  * @param array $expected The expected trimmed SQL with single space at the end
  */
 public function parseSQL($sql, $expected)
 {
     $result = $this->subject->_callRef('parseSQL', $sql);
     $this->assertSame($expected, $result);
 }