All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.yandex.qatools.embed.postgresql.config.SupportConfig Maven / Gradle / Ivy

The newest version!
package ru.yandex.qatools.embed.postgresql.config;

import de.flapdoodle.embed.process.config.ISupportConfig;
import ru.yandex.qatools.embed.postgresql.Command;

public class SupportConfig implements ISupportConfig {
    private final Command command;

    public SupportConfig(Command command) {
        this.command = command;
    }

    @Override
    public String getName() {
        return command.commandName();
    }

    @Override
    public String getSupportUrl() {
        return "https://github.com/yandex-qatools/postgresql-embedded/issues\n";
    }

    @Override
    public String messageOnException(Class context, Exception exception) {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy