Tests.MsgLoopTests.TestDoException C# (CSharp) Method

TestDoException() private method

private TestDoException ( ) : void
return void
        public void TestDoException() => AsyncContext.Run(async () =>
        {
            using (var loop = new MessageLoop<string>(() => ""))
                await loop.DoAsync(state => DivZero());
        });