using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KssSmaPlaLib.AutoTest.Core { /// /// 全体統括・ステップ順実行・ログ出力 /// public static class StepTestRunnerUxer { /// /// 起動パラメータのUIテスト指定 /// private const string KIDOU_PARA_UITEST = "--uitest"; /// /// メインPJのエントリーポイント用: /// 起動パラよりUIテストモード判定 /// /// 起動パラメータ /// UIテストモード? public static bool IsModeByArgs(string[] args) { // 起動パラ判定 return args.Any(m => m.ToLower() == KIDOU_PARA_UITEST); } } }