summaryrefslogtreecommitdiffstats
path: root/java/test/TestH5R.java
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-12-04 18:35:48 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-12-04 18:35:48 (GMT)
commitcc2407257af31cca253e2c42c1d69c0f205e271b (patch)
tree2187b029eac28868afd455623a21bec00afe3824 /java/test/TestH5R.java
parent8f9005570aff0c5216366448fa340493331525d3 (diff)
downloadhdf5-cc2407257af31cca253e2c42c1d69c0f205e271b.zip
hdf5-cc2407257af31cca253e2c42c1d69c0f205e271b.tar.gz
hdf5-cc2407257af31cca253e2c42c1d69c0f205e271b.tar.bz2
Update create calls
Diffstat (limited to 'java/test/TestH5R.java')
-rw-r--r--java/test/TestH5R.java23
1 files changed, 12 insertions, 11 deletions
diff --git a/java/test/TestH5R.java b/java/test/TestH5R.java
index bfa644c..d434738 100644
--- a/java/test/TestH5R.java
+++ b/java/test/TestH5R.java
@@ -438,7 +438,7 @@ public class TestH5R {
fail("testH5Rget_object: H5Sselect_hyperslab " + err);
}
try {
- ref = H5.H5Rcreate_region(H5fid, objName, H5dsid);
+ ref = H5.H5Rcreate_region(H5fid, objName, H5dsid, HDF5Constants.H5P_DEFAULT);
}
catch (Throwable err) {
err.printStackTrace();
@@ -447,6 +447,7 @@ public class TestH5R {
assertNotNull(ref);
}
+// These tests need to be updated with new APIs
// @Test//
// public void testH5Rget_group() {
// long loc_id = H5fid;
@@ -457,7 +458,7 @@ public class TestH5R {
// String objName = "/dset";
//
// try {
-// ref = H5.H5Rcreate_object(H5fid, objName);
+// ref = H5.H5Rcreate_object(H5fid, objName, HDF5Constants.H5P_DEFAULT);
// }
// catch (Throwable err) {
// err.printStackTrace();
@@ -494,7 +495,7 @@ public class TestH5R {
// String objName = "/dset";
//
// try {
-// ref = H5.H5Rcreate_object(H5fid, objName);
+// ref = H5.H5Rcreate_object(H5fid, objName, HDF5Constants.H5P_DEFAULT);
// }
// catch (Throwable err) {
// err.printStackTrace();
@@ -524,7 +525,7 @@ public class TestH5R {
// String objName = "/dset";
//
// try {
-// ref = H5.H5Rcreate_object(H5fid, objName);
+// ref = H5.H5Rcreate_object(H5fid, objName, HDF5Constants.H5P_DEFAULT);
// }
// catch (Throwable err) {
// err.printStackTrace();
@@ -548,26 +549,26 @@ public class TestH5R {
@Test(expected = NullPointerException.class)
public void testH5Rcreate_object_Nullname() throws Throwable {
String name = null;
- H5.H5Rcreate_object(H5fid, name);
+ H5.H5Rcreate_object(H5fid, name, HDF5Constants.H5P_DEFAULT);
}
@Test(expected = HDF5FunctionArgumentException.class)
public void testH5Rget_name_Invalidloc() throws Throwable {
String name= "";
- H5.H5Rcreate_object(-1, name);
+ H5.H5Rcreate_object(-1, name, HDF5Constants.H5P_DEFAULT);
}
// Test parameters to H5Rcreate_region
@Test(expected = NullPointerException.class)
public void testH5Rcreate_region_Nullname() throws Throwable {
String name = null;
- H5.H5Rcreate_region(H5fid, name, -1);
+ H5.H5Rcreate_region(H5fid, name, -1, HDF5Constants.H5P_DEFAULT);
}
@Test(expected = HDF5FunctionArgumentException.class)
public void testH5Rcreate_region_Invalidloc() throws Throwable {
String name= "";
- H5.H5Rcreate_region(-1, name, -1);
+ H5.H5Rcreate_region(-1, name, -1, HDF5Constants.H5P_DEFAULT);
}
// Test parameters to H5Rcreate_attr
@@ -575,21 +576,21 @@ public class TestH5R {
public void testH5Rcreate_attr_Nullname() throws Throwable {
String name = null;
String attrname = "";
- H5.H5Rcreate_attr(H5fid, name, attrname);
+ H5.H5Rcreate_attr(H5fid, name, attrname, HDF5Constants.H5P_DEFAULT);
}
@Test(expected = NullPointerException.class)
public void testH5Rcreate_attr_Nullattrname() throws Throwable {
String name = "";
String attrname = null;
- H5.H5Rcreate_attr(H5fid, name, attrname);
+ H5.H5Rcreate_attr(H5fid, name, attrname, HDF5Constants.H5P_DEFAULT);
}
@Test(expected = HDF5FunctionArgumentException.class)
public void testH5Rcreate_attr_Invalidloc() throws Throwable {
String name= "";
String attrname= "";
- H5.H5Rcreate_attr(-1, name, attrname);
+ H5.H5Rcreate_attr(-1, name, attrname, HDF5Constants.H5P_DEFAULT);
}
// Test parameters to H5Rdestroy