-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
38 lines (35 loc) · 985 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Diagnostics;
using System.IO;
using System.Threading;
namespace UIAutomationConsole
{
class Program
{
static void Main(string[] args)
{
string sourceRepo ="";
string sourceBranch ="";
string testRepo ="";
string testBranch ="";
string testSampleName = "";
string testScriptName = "";
try
{
if (args.Length > 0)
{
sourceRepo = args[0];
sourceBranch = args[1];
testRepo = args[2];
testBranch = args[3];
testSampleName = args[4];
testScriptName = args[5];
}
}
catch (Exception e)
{
Console.WriteLine("The catched exception is " + e.ToString());
}
}
}
}