From 3ffe84d5b6c6d20b18b4bd1a13952b168acb08ad Mon Sep 17 00:00:00 2001 From: Huang YunKun Date: Tue, 28 May 2024 16:35:43 +0800 Subject: [PATCH] Fix 404 error for DataSet class link --- src/main/docs/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/docs/index.adoc b/src/main/docs/index.adoc index 6401754..415863e 100644 --- a/src/main/docs/index.adoc +++ b/src/main/docs/index.adoc @@ -123,7 +123,7 @@ include::{testdir}/DatabaseRiderCoreTest.java[tags=declaration;sample] ---- <1> EntityManagerProvider is a JUnit rule that initializes a JPA entity manager before each *test class*. `riderDB` is the name of persistence unit; <2> DBUnit rule reads *@DataSet* annotations and initializes database before each *test method*. This rule only needs a *JDBC* connection to be created. -<3> The dataSet configuration itself, https://github.com/database-rider/database-rider/blob/master/core/src/main/java/com/github/database/riderapi/dataset/DataSet.java#L14[see here^] for all available configuration options. Note that you can provide a comma separated list of datasets names here. +<3> The dataSet configuration itself, https://github.com/database-rider/database-rider/blob/master/rider-core/src/main/java/com/github/database/rider/core/api/dataset/DataSet.java#L14[see here^] for all available configuration options. Note that you can provide a comma separated list of datasets names here. <4> *em()* is a shortcut (`import static com.github.database.rider.core.util.EntityManagerProvider.em;`) for the EntityManager that was initialized by EntityManagerProvider rule. TIP: There is a lot of https://github.com/database-rider/database-rider/tree/master/rider-core/src/test/java/com/github/database/rider/core[example tests here^].