d

dbunit

dbUnit is a JUnit extension (also usable from Ant and Maven) targeted for database-driven projects that, among other things, puts your database into a known state between test runs. This is an excellent way to avoid the myriad of problems that can occur when one test case corrupts the database and causes subsequent tests to fail or exacerbate the damage.
https://github.com/vasiliygagin/dbunit
GNU Lesser General Public License, Version 2.1
Vasiliy Gagin
文件下载
文件名 操作
dbunit-2.10.0.pom 下载
Apache Maven
<dependency>
  <groupId>io.github.vasiliygagin</groupId>
  <artifactId>dbunit</artifactId>
  <version>2.10.0</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'io.github.vasiliygagin:dbunit:2.10.0'
Gradle Kotlin
implementation("io.github.vasiliygagin:dbunit:2.10.0")
Scala SBT
libraryDependencies += "io.github.vasiliygagin" % "dbunit" % "2.10.0"
Groovy Grape
@Grapes(
  @Grab(group='io.github.vasiliygagin', module='dbunit', version='2.10.0')
)
Apache Ivy
<dependency org="io.github.vasiliygagin" name="dbunit" rev="2.10.0" />
Leiningen
[io.github.vasiliygagin/dbunit "2.10.0"]
Apache Buildr
'io.github.vasiliygagin:dbunit:jar:2.10.0'
本项目依赖
该项目无第三方依赖