Example #1
0
 /**
  * @dataProvider providerTestIsEmpty
  */
 public function testIsEmpty($expected, Type $column, $start, $end)
 {
     $condition = new Conditions\Between($column, $start, $end);
     $this->assertSame($expected, $condition->isEmpty());
 }