Skip to content

Commit

Permalink
Converted JumiSuite to Java
Browse files Browse the repository at this point in the history
  • Loading branch information
luontola committed Feb 9, 2013
1 parent 9862f53 commit 3fe0a49
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
19 changes: 19 additions & 0 deletions dimdwarf-core/src/test/java/net/orfjackal/dimdwarf/JumiSuite.java
@@ -0,0 +1,19 @@
// Copyright © 2008-2013 Esko Luontola <www.orfjackal.net>
// This software is released under the Apache License 2.0.
// The license text is at http://dimdwarf.sourceforge.net/LICENSE

package net.orfjackal.dimdwarf;

import fi.jumi.launcher.JumiBootstrap;
import org.junit.Test;

public class JumiSuite {

@Test
public void all_tests() throws Exception {
new JumiBootstrap()
//.enableDebugMode()
//.setPassingTestsVisible(true)
.runTestsMatching("glob:net/orfjackal/dimdwarf/**Spec.class");
}
}

This file was deleted.

0 comments on commit 3fe0a49

Please sign in to comment.