diff --git a/tests/org.eclipse.passage.seal.demo.tests/src/org/eclipse/passage/seal/demo/tests/TemporaryTest.java b/tests/org.eclipse.passage.seal.demo.tests/src/org/eclipse/passage/seal/demo/tests/TemporaryTest.java new file mode 100644 index 000000000..7afee0557 --- /dev/null +++ b/tests/org.eclipse.passage.seal.demo.tests/src/org/eclipse/passage/seal/demo/tests/TemporaryTest.java @@ -0,0 +1,26 @@ +package org.eclipse.passage.seal.demo.tests; + +import static org.junit.Assert.assertTrue; + +import org.junit.Test; + +public final class TemporaryTest { + /** + *

+ * There only contract (meaning abstract) tests in this bundle. Nonetheless, + * it's still recognized as 'tests' bundle. All the special treatments are + * applied: sure-fire plug-in is applied. This one fails on a bundle where is + * nothing to run. + *

+ * + *

+ * Thus we add a single deadly stupid but workable test especially for sure-fire + * to make it go. + *

+ */ + @Test + public void singleWorkableTestInABundleFullOfAbstractTest() { + assertTrue(System.currentTimeMillis() > 0); + } + +}