Ejemplo n.º 1
0
 public void TestAllocThrowsOnApiError()
 {
     Proc.Alloc(int.MaxValue);
 }
Ejemplo n.º 2
0
        public void TestAllocFree()
        {
            IntPtr address = Proc.Alloc(1024);

            Proc.Free(address);
        }
Ejemplo n.º 3
0
 public void TestAllocThrowsOnZeroCount()
 {
     Proc.Alloc(0);
 }