com.wix.mysql.MysqldStarter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wix-embedded-mysql Show documentation
Show all versions of wix-embedded-mysql Show documentation
Embedded MySql for E2E/IT tests
package com.wix.mysql;
import com.wix.mysql.config.MysqldConfig;
import de.flapdoodle.embed.process.config.IRuntimeConfig;
import de.flapdoodle.embed.process.distribution.Distribution;
import de.flapdoodle.embed.process.extract.IExtractedFileSet;
import de.flapdoodle.embed.process.runtime.Starter;
class MysqldStarter extends Starter {
public MysqldStarter(final IRuntimeConfig config) {
super(config);
}
@Override
protected MysqldExecutable newExecutable(
final MysqldConfig config,
final Distribution distribution,
final IRuntimeConfig runtime,
final IExtractedFileSet exe) {
return new MysqldExecutable(distribution, config, runtime, exe);
}
}