public function test_delete()
 {
     /** === Test Data === */
     $WHERE = 'where';
     $DELETED = 1;
     /** === Setup Mocks === */
     // $result = $this->_repoGeneric->delete($this->_entityName, $where);
     $this->mRepoGeneric->shouldReceive('delete')->once()->with($this->ENTITY_NAME, $WHERE)->andReturn($DELETED);
     /** === Call and asserts  === */
     $res = $this->obj->delete($WHERE);
     $this->assertEquals($DELETED, $res);
 }