public function test_update()
 {
     /** === Test Data === */
     $DATA = ['field' => 'value'];
     $WHERE = 'where';
     $UPDATED = 'rows updated';
     /** === Setup Mocks === */
     // $result = $this->_repoGeneric->updateEntity($this->_entityName, $data, $where);
     $this->mRepoGeneric->shouldReceive('updateEntity')->once()->with($this->ENTITY_NAME, $DATA, $WHERE)->andReturn($UPDATED);
     /** === Call and asserts  === */
     $res = $this->obj->update($DATA, $WHERE);
     $this->assertEquals($UPDATED, $res);
 }