/**
  * @test delete
  */
 public function testDeleteUserOng()
 {
     $userOng = $this->makeUserOng();
     $resp = $this->userOngRepo->delete($userOng->id);
     $this->assertTrue($resp);
     $this->assertNull(UserOng::find($userOng->id), 'UserOng should not exist in DB');
 }