public void should_throw_object_not_found_exception_404_when_no_result_in_database() { var cursor = StubCursor <Course>(CourseCollectionName); StubNotFoundResult(cursor); var response = _controller.Awaiting(x => ExecuteEndpoint(x.GetById(Id))); AssertObjectNotFoundExceptionThrown(response); }