Example #1
0
        public void IntPtrIsEmpty_Is_Not_Empty()
        {
            IntPtr pointChecked = Marshal.StringToHGlobalAnsi("Foobar");;

            Assert.IsFalse(StructVerify.IntPtrIsEmpty(pointChecked));
        }
Example #2
0
        public void IntPtrIsEmpty_Is_Empty()
        {
            IntPtr pointChecked = new IntPtr();

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