Removed unnecessary writer code

This commit is contained in:
2014-09-30 13:48:04 +02:00
parent 10b0052c6f
commit 11e891e8d4
5 changed files with 61 additions and 452 deletions

View File

@@ -1,25 +0,0 @@
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());
}
}