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