public void GetOrganisationByIdAndCheckTheOrganisationIsReturned()
        {
            var organisation = OrganisationHandler.GetOrganisationSummaryByOrgId(_organisationId2);

            Assert.AreEqual(_organisation2.EndPointAssessorName, organisation.Name, "The organisation names do not match");
            Assert.AreEqual(_organisation2.EndPointAssessorOrganisationId, organisation.Id, "The organisation Ids do not match");
        }