File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
cdm-test/src/test/java/ucar/nc2/ncml Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 55
66package ucar .nc2 .ncml ;
77
8+ import org .junit .After ;
9+ import org .junit .Before ;
810import org .junit .Test ;
911import org .junit .experimental .categories .Category ;
10- import org .junit .jupiter .api .AfterEach ;
11- import org .junit .jupiter .api .BeforeEach ;
1212import org .slf4j .Logger ;
1313import org .slf4j .LoggerFactory ;
1414import ucar .ma2 .ArrayInt ;
@@ -31,8 +31,8 @@ public class TestNcMLStrides {
3131 NetcdfFile ncfile = null ;
3232 String location = "file:" + TestDir .cdmUnitTestDir + "agg/strides/strides.ncml" ;
3333
34- @ BeforeEach
35- public void setUp () {
34+ @ Before
35+ public void set_up () {
3636 try {
3737 ncfile = NcMLReader .readNcML (location , null );
3838 // System.out.println("ncfile opened = "+location);
@@ -44,8 +44,8 @@ public void setUp() {
4444 }
4545 }
4646
47- @ AfterEach
48- protected void tearDown () throws IOException {
47+ @ After
48+ public void tearDown () throws IOException {
4949 ncfile .close ();
5050 }
5151
You can’t perform that action at this time.
0 commit comments