コード例 #1
0
        public async Task Checking_Existing_PostId__Returns_ObjectResult()
        {
            //Arrange

            //Act
            var result = await postsController.BlockPostCreation(Guid.NewGuid());

            //Assert
            Assert.IsType <ObjectResult>(result);
        }