Exemplo n.º 1
0
        public void IntPtrIsEmpty_Is_Not_Empty()
        {
            IntPtr pointChecked = Marshal.StringToHGlobalAnsi("Foobar");;

            Assert.IsFalse(StructVerify.IntPtrIsEmpty(pointChecked));
        }
Exemplo n.º 2
0
        public void IntPtrIsEmpty_Is_Empty()
        {
            IntPtr pointChecked = new IntPtr();

            Assert.IsTrue(StructVerify.IntPtrIsEmpty(pointChecked));
        }