Ejemplo n.º 1
0
 public function testExistsWithNonExistentCondition()
 {
     $c = new ModelCriteria('bookstore', 'Book', 'b');
     $c->where('b.Title = ?', 'jenexistepas');
     $this->assertFalse($c->exists());
 }