Hudl.Mjolnir.Tests.Command.Attribute.TestThrowingImplementation.InvokeGenericTaskWithAwaitDelay C# (CSharp) Method

InvokeGenericTaskWithAwaitDelay() public method

public InvokeGenericTaskWithAwaitDelay ( ) : Task
return Task
        public async Task<object> InvokeGenericTaskWithAwaitDelay()
        {
            await Task.Delay(100);
            throw _exceptionToThrow;
        }