Ejemplo n.º 1
0
        public void H5Aget_info_by_nameTest1()
        {
            H5A.info_t info = new H5A.info_t();
            hid_t att = H5A.create(m_v2_test_file, "A", H5T.IEEE_F64LE,
                m_space_scalar);
            Assert.IsTrue(att >= 0);
            Assert.IsTrue(H5A.close(att) >= 0);
            att = H5A.create(m_v2_test_file, "B", H5T.IEEE_F64LE,
                m_space_scalar);
            Assert.IsTrue(att >= 0);
            Assert.IsTrue(H5A.close(att) >= 0);

            Assert.IsTrue(H5A.get_info_by_name(m_v2_test_file, ".", "A",
                ref info) >= 0);
            Assert.IsTrue(H5A.get_info_by_name(m_v2_test_file, ".", "B",
                ref info) >= 0);
            
            att = H5A.create(m_v0_test_file, "A", H5T.IEEE_F64LE,
                m_space_scalar);
            Assert.IsTrue(att >= 0);
            Assert.IsTrue(H5A.close(att) >= 0);
            Assert.IsTrue(H5A.get_info_by_name(m_v0_test_file, ".", "A",
                ref info) >= 0);

            Assert.IsFalse(H5A.get_info_by_name(m_v0_test_file, ".", "B",
                ref info) >= 0);
        }
Ejemplo n.º 2
0
 public void H5Aget_info_by_nameTest2()
 {
     H5A.info_t info = new H5A.info_t();
     Assert.IsFalse(
         H5A.get_info_by_name(Utilities.RandomInvalidHandle(), ".", ".",
         ref info) >= 0);
     Assert.IsFalse(
         H5A.get_info_by_name(Utilities.RandomInvalidHandle(), ".", "",
         ref info) >= 0);
 }