Tests.InteropTests.CheckEvHttp C# (CSharp) Method

CheckEvHttp() private method

private CheckEvHttp ( ) : void
return void
        public void CheckEvHttp()
        {
            using (var b = Event.EventBaseNew())
            using (var http = Event.EvHttpNew(b))
            {
                Assert.False (http.IsInvalid);
                Assert.NotEqual (IntPtr.Zero, http.DangerousGetHandle ());
            }
        }