com.github.mlk.junit.rules.DatabaseRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assortmentofjunitrules Show documentation
Show all versions of assortmentofjunitrules Show documentation
Useful assortment of JUnit rules for integration testing
package com.github.mlk.junit.rules;
public interface DatabaseRule {
String getDatasourceUrl();
String getUsername();
String getPassword();
void before() throws Throwable;
void after();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy