Ejemplo n.º 1
0
 /**
  * @dataProvider whereDataProvider
  *
  * @param Alius\Query\Statement $instance
  */
 public function testOrWhere(Statement $instance)
 {
     $instance->orWhere('foo = ?', 'bar');
     $this->assertSame('WHERE foo = ?', $instance->buildWhere());
 }