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