| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
jOOQ execute listener integration for Allure Java.
Use this module when your tests execute SQL through jOOQ and you want rendered SQL, execution status, and database failures to appear as Allure steps.
Gradle:
dependencies {
testImplementation(platform("io.qameta.allure:allure-bom:<allure-version>"))
testImplementation("io.qameta.allure:allure-jooq")
}Maven, with allure-bom imported in dependency management:
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-jooq</artifactId>
<scope>test</scope>
</dependency>Register io.qameta.allure.jooq.AllureJooq as a jOOQ ExecuteListener.
Configuration configuration = new DefaultConfiguration()
.set(new DefaultExecuteListenerProvider(new AllureJooq()));| Back | FazBrowse Home | New Git URL |