marick / Midje

Midje provides a migration path from clojure.test to a more flexible, readable, abstract, and gracious style of testing
MIT License
1.69k stars 129 forks source link

Any way to attach to test run events? #278

Closed vania-pooh closed 10 years ago

vania-pooh commented 10 years ago

Is there something similar to http://junit.sourceforge.net/javadoc/org/junit/runner/notification/RunListener.html in Midje? We would like to create an extension for Midje based on such event listener.

marick commented 10 years ago

You'd want to use the emissions interface - https://github.com/marick/Midje/wiki/Customizing-reporting

vania-pooh commented 10 years ago

Thank you.