JUnit test integration for Clojure.
The purpose of cljunit is to provide a convenient way to write JUnit tests that test Clojure namespaces. This is very useful if, for example, you want to test Clojure code within a Java IDE like Eclipse that has integrated JUnit testing facilities.
Include cljunit as a dependency from clojars:
Then you should extend one of the cljunit classes to create a JUnit test suite to test your Clojure files.
And that's it: you should now have your Clojure tests nicely wrapped up in JUnit test suites. These have been tested to work in the following situations:
- Running JUnit tests with Eclipse (Run / Run As... / JUnit Test)
- Running JUnit tests with Maven (you don't even need the
clojure-maven-plugin
since the regular Maven configuration will automatically run JUnit tests)
Examples below:
This is the simplest solution that works for most projects. Just be warned: it will run every Clojure test on the classpath. Which might be a lot if your imported libraries have a lot of tests in them.
import mikera.cljunit.ClojureTest;
public class ClojureTests extends ClojureTest {
// automatically test all Clojure namespaces in classpath
}
import mikera.cljunit.ClojureTest;
public class ClojureTests extends ClojureTest {
// filter namespaces with the given prefix
@Override public String filter() {
return "com.mycompany";
}
}
import mikera.cljunit.NamespaceTest;
public class MyNamespaceTest extends NamespaceTest {
@Override
public String namespace() {
return "my.clojure.namespace";
}
}
Working example from vectorz-clj
import mikera.cljunit.ClojureTest;
public class ClojureTests extends ClojureTest {
@Override
public List<String> namespaces() {
return Arrays.asList(new String[] {
"mikera.vectorz.test-core",
"mikera.vectorz.test-matrix"
});
}
}