Skip to content

Instantly share code, notes, and snippets.

@kimble
Last active August 29, 2015 14:27
Show Gist options
  • Save kimble/bee39b25cadd5029567b to your computer and use it in GitHub Desktop.
Save kimble/bee39b25cadd5029567b to your computer and use it in GitHub Desktop.
H2RuleTest.java
package junit.rules;
import org.junit.Rule;
import org.junit.Test;
import java.sql.SQLException;
public class H2RuleTest {
@Rule
public H2Rule h2 = new H2Rule("testbase"); // <1>
@Test
public void enFornuftigTest() throws SQLException {
h2.withConnection(connection -> {
// <2>
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment