示例#1
0
        public async Task WasteRecoveryNull_ReturnsNull()
        {
            A.CallTo(() => repository.GetByNotificationId(NotificationId)).Returns <WasteRecovery>(null);

            var result = await handler.HandleAsync(new GetEstimatedValue(NotificationId));

            Assert.Null(result);
        }