public async Task PartiallyUpdateCollection_ReturnsBadRequestResponse_GivenNoPatchDocument()
        {
            //Act
            var response = await _controller.PartiallyUpdateCollection(Guid.Empty, null);

            //Assert
            Assert.IsType <BadRequestResult>(response);
        }