public void TestPostLocation()
        {
            Location newLocation = new Location()
            {
                Name   = "TestLocatie",
                Street = "Bestestraat 9"
            };

            _locationsFacade.AddLocation(newLocation);
            Location result = _locationsFacade.GetAllLocations(4);

            Assert.Equal(newLocation.Street, result.Street);
        }