Beispiel #1
0
 public void H5Fget_infoTest2()
 {
     H5F.info_t info = new H5F.info_t();
     Assert.IsFalse(
         H5F.get_info(Utilities.RandomInvalidHandle(), ref info) >= 0);
 }
Beispiel #2
0
 public extern static herr_t get_info
     (hid_t obj_id, ref H5F.info_t bh_info);
Beispiel #3
0
 public void H5Fget_infoTest1()
 {
     H5F.info_t info = new H5F.info_t();
     Assert.IsTrue(H5F.get_info(m_v0_class_file, ref info) >= 0);
     Assert.IsTrue(H5F.get_info(m_v2_class_file, ref info) >= 0);
 }