A small library with helpers for generating test data through a simple DSL.
You can super charge water. You should also super charge your tests.
The currently released build should be shown on the badges at the top of this README. Simply add that dependency to your SBT file:
libraryDependencies += "com.github.fulrich" %% "test-charged" % "0.1.5"
Our SNAPSHOT version is also shown at the badges on the top.
To use the newest SHAPSHOT you must include the Sonatype resolver and then add the dependency.
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies += "com.github.fulrich" %% "test-charged" % "0.1.6-SNAPSHOT" % "test"
Our documentation can be found here: https://fulrich.github.io/test-charged/
TestCharged used the ci-release SBT plugin: https://github.com/olafurpg/sbt-ci-release.
Every push to master that passes CI will release a SNAPSHOT with a unique version number.
To release a new version git tags are utilized:
git tag -a v0.1.0 -m "v0.1.0"
git push origin v0.1.0