fulrich / test-charged   0.1.16

Apache License 2.0 Website GitHub

A small library with helpers for generating test data through a simple DSL

Scala versions: 2.13 2.12 2.11

TestCharged

Travis (.org) Codecov Scala Versions

Maven Central Maven Central Maven Central

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.

Quick Start

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"

Documentation

Our documentation can be found here: https://fulrich.github.io/test-charged/

Contributing

Releasing

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