Beispiel #1
0
 public function testUpdateThrowsExceptionWithNoData()
 {
     $builder = new BaseBuilder('jobs', $this->db);
     $this->setExpectedException('CodeIgniter\\DatabaseException', 'You must use the "set" method to update an entry.');
     $builder->update(null, null, null, true);
 }