ApiApproverTests.Method_async.Should_output_async_method_with_return_value C# (CSharp) Метод

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

private Should_output_async_method_with_return_value ( ) : void
Результат void
        public void Should_output_async_method_with_return_value()
        {
            AssertPublicApi<MethodAsyncReturnValue>(
@"namespace ApiApproverTests.Examples
{
    public class MethodAsyncReturnValue
    {
        public MethodAsyncReturnValue() { }
        public System.Threading.Tasks.Task<string> AsyncMethod() { }
    }
}");
        }