changes in several places ...
This commit is contained in:
parent
f227e875b3
commit
95d13f0a20
2
pom.xml
2
pom.xml
@ -3,7 +3,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>ch.psi.imagej</groupId>
|
<groupId>ch.psi.imagej</groupId>
|
||||||
<artifactId>ch.psi.imagej.cbf</artifactId>
|
<artifactId>ch.psi.imagej.cbf</artifactId>
|
||||||
<version>0.0.1</version>
|
<version>0.0.2</version>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -41,7 +41,7 @@ import ij.process.ImageProcessor;
|
|||||||
/**
|
/**
|
||||||
* I am an ImageJ plug-in for reading a CBF image.
|
* I am an ImageJ plug-in for reading a CBF image.
|
||||||
*/
|
*/
|
||||||
public class ImageJCbfReader implements PlugIn {
|
public class CbfReader implements PlugIn {
|
||||||
private static final Pattern WHITESPACE_PATTERN = Pattern.compile(" ");
|
private static final Pattern WHITESPACE_PATTERN = Pattern.compile(" ");
|
||||||
|
|
||||||
@Override
|
@Override
|
@ -1 +1 @@
|
|||||||
File>Import, "CBF...", imcacat.jcbf.ImageJCbfReader
|
File>Import, "CBF...", ch.psi.imagej.cbf.CbfReader
|
||||||
|
29
src/test/java/ch/psi/imagej/cbf/CbfReaderTest.java
Normal file
29
src/test/java/ch/psi/imagej/cbf/CbfReaderTest.java
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
package ch.psi.imagej.cbf;
|
||||||
|
|
||||||
|
import static org.junit.Assert.*;
|
||||||
|
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
public class CbfReaderTest {
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setUp() throws Exception {
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void tearDown() throws Exception {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void test() {
|
||||||
|
fail("Not yet implemented");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args){
|
||||||
|
CbfReader reader = new CbfReader();
|
||||||
|
reader.run("");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user