Esempio n. 1
0
        public async Task CreateAsync_NotFoundAsync()
        {
            PollDto pollDto = null;

            var actualResult = await _pollController.CreateAsync(pollDto);

            actualResult.Should().BeOfType <NotFoundResult>();
        }