public HalResourceListTests()
 {
     representation = new OrganisationListRepresentation(
         new List<OrganisationRepresentation>
                {
                    new OrganisationRepresentation(1, "Org1"),
                    new OrganisationRepresentation(2, "Org2")
                });
 }
        public HalResourceListTests()
        {
            representation = new OrganisationListRepresentation(
                new List <OrganisationRepresentation>
            {
                new OrganisationRepresentation(1, "Org1"),
                new OrganisationRepresentation(2, "Org2")
            });

            oneitemrepresentation = new OrganisationListRepresentation(
                new List <OrganisationRepresentation>
            {
                new OrganisationRepresentation(1, "Org1")
            });
        }