use of com.github.fabriciofx.cactoos.jdbc.Server in project cactoos-jdbc by fabriciofx.
the class ScriptSqlTest method mysqlServer.
@Test
public void mysqlServer() throws Exception {
final Server server = new ServerMysql(new ScriptSql(new ResourceOf(new Joined("/", "com/github/fabriciofx/cactoos/jdbc/phonebook", "phonebook-mysql.sql"))));
server.start();
server.stop();
}
Aggregations