Skip to content

Commit a30ddd7

Browse files
committed
Add explicit failure message for "Use SCIFIO"
If the local system has an ImageJ2 installation with Edit > Options > ImageJ2 > Use SCIFIO enabled, this test will fail. This was documented in the code but having an explicit message in this failure case will hopefully mitigate future confusion. Closes #260
1 parent 5d66b53 commit a30ddd7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/test/java/net/imagej/legacy/LegacyOpenerTest.java

+9
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
import static org.junit.Assert.assertEquals;
3333
import static org.junit.Assert.assertNotNull;
3434
import static org.junit.Assert.assertTrue;
35+
import static org.junit.Assert.fail;
36+
3537
import java.net.URL;
3638

3739
import net.imagej.patcher.LegacyInjector;
@@ -85,6 +87,13 @@ public void testPaulsMacro() throws Exception {
8587
// it is because you have enabled the "Use SCIFIO when opening files"
8688
// option in Edit > Options > ImageJ2. On fresh systems, this option
8789
// is off; the value returned by ImageJ 1.x's built-in behavior is 3.
90+
if (numResults == 10) {
91+
// NB: We have the ImageJ2Options plugin.. could we disable scifio for
92+
// the scope of this test?
93+
fail(
94+
"Return value (10) suggests SCIFIO was used instead of ImageJ 1.x. " +
95+
"Please disable \"Use SCIFIO when opening files\" in Edit > Options > ImageJ2");
96+
}
8897
assertEquals(3, (int) numResults);
8998
}
9099
finally {

0 commit comments

Comments
 (0)