Example #1
0
 public void H5Fget_mdc_configTest2()
 {
     H5AC.cache_config_t conf = new H5AC.cache_config_t();
     Assert.IsFalse(
         H5F.get_mdc_config(Utilities.RandomInvalidHandle(),
                            ref conf) >= 0);
 }
Example #2
0
 public void H5Fget_mdc_configTest1()
 {
     H5AC.cache_config_t conf = new H5AC.cache_config_t(
         H5AC.CURR_CACHE_CONFIG_VERSION);
     Assert.IsTrue(H5F.get_mdc_config(m_v0_class_file, ref conf) >= 0);
     Assert.IsTrue(H5F.get_mdc_config(m_v2_class_file, ref conf) >= 0);
 }