public async Task GetDiffResult_Should_ReturnNotFound_When_GuidIsEmpty() { var result = await _diffController.GetDiffResult(Guid.Empty) as NotFoundResult; Assert.IsNotNull(result); Assert.AreEqual(404, result.StatusCode); }