Class
ExecutingTestlistViewModel

Definition

Namespace:ArtOfTest.WebAii.Design.UI.Scheduling.Models

Assembly:ArtOfTest.WebAii.Design.dll

Syntax:

cs-api-definition
public class ExecutingTestlistViewModel

Inheritance: objectExecutingTestlistViewModel

Constructors

ExecutingTestlistViewModel()

Declaration

cs-api-definition
public ExecutingTestlistViewModel()

Properties

ProcessTests

Key is process name, value is List of test names running in that process

Declaration

cs-api-definition
public ConcurrentDictionary<string, List<string>> ProcessTests { get; }

Property Value

ConcurrentDictionary<string, List<string>>

TestListId

Declaration

cs-api-definition
public Guid TestListId { get; set; }

Property Value

Guid

TestListName

Declaration

cs-api-definition
public string TestListName { get; set; }

Property Value

string

Methods

AddTest(string, string)

Add a test to a process

Declaration

cs-api-definition
public void AddTest(string processName, string testName)

Parameters

processName

string

Process

testName

string

Test

TestsRunningInProcess(string)

Retrieves a string in the format of "TestListName : Test1, Test2, etc...

Declaration

cs-api-definition
public string TestsRunningInProcess(string processName)

Parameters

processName

string

Name of Process

Returns

string

Test list display string