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.
http://dbunit.sourceforge.net
GNU Lesser General Public License, Version 2.1
Jeff Jensen Andrew Landsverk Matthias Gommeringer John Hurst Roberto Lo Giacco Felipe Leme David Eric Pugh Sebastien Le Callonnec Manuel Laflamme Benjamin Cox Federico Spinazzi Timothy J. Ruppert
Files download
File Operation
dbunit-2.7.3.jar download
dbunit-2.7.3.pom download
dbunit-2.7.3-sources.jar download
Apache Maven
<dependency>
  <groupId>org.dbunit</groupId>
  <artifactId>dbunit</artifactId>
  <version>2.7.3</version>
</dependency>
Gradle Groovy
implementation 'org.dbunit:dbunit:2.7.3'
Gradle Kotlin
implementation("org.dbunit:dbunit:2.7.3")
Scala SBT
libraryDependencies += "org.dbunit" % "dbunit" % "2.7.3"
Groovy Grape
@Grapes(
  @Grab(group='org.dbunit', module='dbunit', version='2.7.3')
)
Apache Ivy
<dependency org="org.dbunit" name="dbunit" rev="2.7.3" />
Leiningen
[org.dbunit/dbunit "2.7.3"]
Apache Buildr
'org.dbunit:dbunit:jar:2.7.3'