public void TestMethod_Settings()
        {
            OrchestratorConfig.Commands.Add("Settings");
            OrchestratorCommand comand = new OrchestratorCommand();
            var model = comand.CreateCommandModel();

            comand.ExecuteCommand(model);
        }
        public void TestMethod_EnvironmentEnvironments()
        {
            OrchestratorConfig.Commands.Add("Environments");
            OrchestratorCommand comand = new OrchestratorCommand();
            var model = comand.CreateCommandModel();

            comand.ExecuteCommand(model);
        }
        public void TestMethod_Release()
        {
            OrchestratorConfig.Commands.Add("Release");
            OrchestratorCommand comand = new OrchestratorCommand();
            var model = comand.CreateCommandModel();

            comand.ExecuteCommand(model);
        }