1 
2 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3  * Copyright by The HDF Group.                                               *
4  * All rights reserved.                                                      *
5  *                                                                           *
6  * This file is part of HDF Products. The full HDF copyright                 *
7  * notice, including terms governing use, modification, and redistribution,  *
8  * is contained in the file, COPYING.  COPYING can be found at the root of   *
9  * the source code distribution tree. You can also access it online  at      *
10  * http://www.hdfgroup.org/products/licenses.html.  If you do not have       *
11  * access to the file, you may request a copy from help@hdfgroup.org.        *
12  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
13 
14 package test;
15 
16 import static org.junit.Assert.assertEquals;
17 import static org.junit.Assert.assertFalse;
18 import static org.junit.Assert.assertTrue;
19 import static org.junit.Assert.fail;
20 
21 import java.io.File;
22 
23 import hdf.hdflib.HDFLibrary;
24 import hdf.hdflib.HDFException;
25 import hdf.hdflib.HDFChunkInfo;
26 import hdf.hdflib.HDFConstants;
27 
28 import org.junit.After;
29 import org.junit.Before;
30 import org.junit.Ignore;
31 import org.junit.Rule;
32 import org.junit.Test;
33 import org.junit.rules.TestName;
34 
35 public class TestH4HCparams {
36     @Rule public TestName testname = new TestName();
37 
38     @Before
showTestName()39     public void showTestName() {
40         System.out.print(testname.getMethodName());
41     }
42 
43     @After
nextTestName()44     public void nextTestName() {
45         System.out.println();
46     }
47 
48     @Test//(expected = HDFException.class)
testHCget_config_infoIllegalCoderType()49     public void testHCget_config_infoIllegalCoderType() throws Throwable {
50         //HDFLibrary.HCget_config_info(HDFConstants.COMP_CODE_INVALID);
51     }
52 }
53