io.split.qos.server.integrations.slack.commander.SlackCommandProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qosrunner Show documentation
Show all versions of qosrunner Show documentation
Framework for running JUnit Tests as a Continous Service (QoS)
package io.split.qos.server.integrations.slack.commander;
import io.split.qos.server.integrations.slack.commands.*;
/**
* Provides the different commands.
*
* For not clutching all the classes, new commands should be provided here.
*/
public interface SlackCommandProvider {
SlackInfoCommand info();
SlackPauseCommand pause();
SlackResumeCommand resume();
SlackGreenCommand green();
SlackCommandsCommand commands();
SlackFailedCommand failed();
SlackMissingCommand missing();
SlackRunAllCommand runAll();
SlackRunTestCommand runTest();
SlackConfigCommand config();
SlackPingCommand ping();
SlackTestsCommand tests();
SlackStoryCommand story();
SlackCountCommand count();
SlackSucceededCommand succeeded();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy