AK.F1.Timing.Proxy.ProxyMessageReaderTest.reader_throws_if_unable_to_connect_to_endpoint C# (CSharp) 메소드

reader_throws_if_unable_to_connect_to_endpoint() 개인적인 메소드

private reader_throws_if_unable_to_connect_to_endpoint ( ) : void
리턴 void
        public void reader_throws_if_unable_to_connect_to_endpoint()
        {
            Assert.Throws<IOException>(() =>
            {
                using(var reader = new ProxyMessageReader(TestEndpoint))
                {
                    reader.Read();
                }
            });
        }