Some more refactoring ... hoping that things get in shape some time ...

This commit is contained in:
2014-08-28 14:16:50 +02:00
parent 7ff965bc08
commit c049510d70
6 changed files with 521 additions and 539 deletions

View 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());
}
}