public void H5EpopTest1() { Assert.IsTrue( H5E.push(H5E.DEFAULT, "hello.c", "sqrt", 77, H5E.ERR_CLS, H5E.NONE_MAJOR, H5E.NONE_MINOR, "Hello, World!") >= 0); Assert.IsTrue( H5E.push(H5E.DEFAULT, "hello.c", "sqr", 78, H5E.ERR_CLS, H5E.NONE_MAJOR, H5E.NONE_MINOR, "Hello, World!") >= 0); Assert.IsTrue(H5E.pop(H5E.DEFAULT, new IntPtr(2)) >= 0); }
public void H5EpopTest2() { Assert.IsFalse( H5E.pop(Utilities.RandomInvalidHandle(), IntPtr.Zero) >= 0); }