
Behavior-driven development testing tool enhances unit tests with structured Given-When-Then blocks, promoting reusable test cases and efficient test writing through unified building blocks.
repositories {
mavenCentral()
}
dependencies {
testImplementation("at.florianschuster.bddt:bddt:$version")
}see changelog for versions
bddt is a behavior-driven-development-testing tool for unit tests. bddt tests contain the following building blocks:
Given: precondition(s) for a system under testWhen: action(s) to perform on the system under testThen: assertion(s) on the system under testThis structure unifies test cases to enable reuse these building blocks.
Step
building blocks.visit my website.
repositories {
mavenCentral()
}
dependencies {
testImplementation("at.florianschuster.bddt:bddt:$version")
}see changelog for versions
bddt is a behavior-driven-development-testing tool for unit tests. bddt tests contain the following building blocks:
Given: precondition(s) for a system under testWhen: action(s) to perform on the system under testThen: assertion(s) on the system under testThis structure unifies test cases to enable reuse these building blocks.
Step
building blocks.visit my website.