public void CreatedPath_EntityResponse_ReturnsCorrectUri()
        {
            var response = new TestEntityResponse(Guid.NewGuid());

            var result = PathCreator.CreatedPath <TestEntityResponse>(response);

            Assert.AreEqual(result, $"https://localhost:57224/TestEntityResponse/{response.Id}");
        }