Package com.reallifedeveloper.tools.test.database.dbunit


package com.reallifedeveloper.tools.test.database.dbunit
Support classes for writing DbUnit tests that work with a real database.

DbUnit tests are useful for testing repository implementations, for example to verify that JPA mappings and queries are correct. Don't overuse this kind of tests, though; they are relatively slow. For testing non-repository classes, such as services, it is better to inject in-memory repositories (see InMemoryJpaRepository).

Author:
RealLifeDeveloper