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);
        }