AsyncTest.ReflectedTaskPatternActionDescriptorTest.ShouldImplement_AsyncActionDescriptor C# (CSharp) Метод

ShouldImplement_AsyncActionDescriptor() приватный Метод

private ShouldImplement_AsyncActionDescriptor ( ) : void
Результат void
        public void ShouldImplement_AsyncActionDescriptor()
        {
            var actionMethod = typeof(TaskController).GetMethod("MethodReturningTask");

            var subjectUnderTest = new ReflectedTaskPatternActionDescriptor(actionMethod, null);

            Assert.IsInstanceOf<AsyncActionDescriptor>(subjectUnderTest);
        }