mirror of
https://github.com/paulscherrerinstitute/ch.psi.imagej.hdf5.git
synced 2026-02-19 09:18:50 +01:00
Some more refactoring ... hoping that things get in shape some time ...
This commit is contained in:
25
src/test/java/ch/psi/imagej/hdf5/TimeFrameTest.java
Normal file
25
src/test/java/ch/psi/imagej/hdf5/TimeFrameTest.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package ch.psi.imagej.hdf5;
|
||||
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
public class TimeFrameTest {
|
||||
|
||||
private TimeFrame timeframe;
|
||||
|
||||
@Before
|
||||
public void setUp() throws Exception {
|
||||
timeframe = new TimeFrame(1);
|
||||
}
|
||||
|
||||
@After
|
||||
public void tearDown() throws Exception {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void test() {
|
||||
System.out.println(timeframe.toString());
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user