for Push.
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace KssSmaPlaLib.AutoTest.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// 全体統括・ステップ順実行・ログ出力
|
||||
/// </summary>
|
||||
public static class StepTestRunnerUxer
|
||||
{
|
||||
/// <summary>
|
||||
/// 起動パラメータのUIテスト指定
|
||||
/// </summary>
|
||||
private const string KIDOU_PARA_UITEST = "--uitest";
|
||||
|
||||
/// <summary>
|
||||
/// メインPJのエントリーポイント用:
|
||||
/// 起動パラよりUIテストモード判定
|
||||
/// </summary>
|
||||
/// <param name="args">起動パラメータ</param>
|
||||
/// <returns>UIテストモード?</returns>
|
||||
public static bool IsModeByArgs(string[] args)
|
||||
{
|
||||
// 起動パラ判定
|
||||
return args.Any(m => m.ToLower() == KIDOU_PARA_UITEST);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user