~/simulatest.org
status: ok
v1.0
jvm
oss
$cd ~/simulatest.org && cat README
simulatest.org
// A small workshop on the public web, home to the JVM testing tools I've built over the years, pairing with amazing developers on real projects. They earned their keep in production; now they're open source, in case they're useful to you too.
$ls projects/// 002 entries
[01 · simulatest]
simulatest
A JVM toolkit for database-heavy test isolation.
// If you work on a database-backed system, you've felt it — tests interfering with each other, @Before / @After / TRUNCATE boilerplate, the same data rebuilt over and over. Simulatest replaces all of that with reversible state and structured fixtures.
- Reversible database state
- Structured test fixtures
- No setup / cleanup boilerplate
github.com/gb/simulatest
[02 · rest-mock]
rest-mock
The simplest way to mock HTTP in JVM.
- No config
- No DSL
- No server setup headaches
// just this:
RestMock.whenGet("/users/42").thenReturnJSON("{\"name\":\"Bob\"}");
RestMock.startServer();
// that's it.
github.com/francisrangel/rest-mock