Scratching a JUnit Itch
tl;dr ¶
- I like JUnit. It is simple and clean, and it is ubiquitous in the Java world.
- I like Go’s
testing
package. It is even simpler and cleaner, and distinguishes between failed checks and fatal test failures. It doesn’t use exceptions to do this. - I wanted to see what Go’s testing semantics would look like in JUnit, so I wrote JGoTesting. Some people helped me.
- I’m quite pleased with how it is turning out so I want to share it with you.