forked from salmanlt/CSharp-Selenium-Sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram.cs
More file actions
26 lines (26 loc) · 667 Bytes
/
Copy pathprogram.cs
File metadata and controls
26 lines (26 loc) · 667 Bytes
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
using System;
namespace csharp_selenium_lambdatest
{
public class Program
{
static void Main(string[] args)
{
foreach (Object obj in args)
{
String test = obj.ToString();
switch (test)
{
case "single":
SingleTest.execute();
break;
case "parallel":
ParallelTests.execute();
break;
default:
SingleTest.execute();
break;
}
}
}
}
}