WaitForIsOrphan
Constructors
public WaitForIsOrphan(Client client, string entityName, bool isOrphaned = true, bool waitForEntityToExist = true, int lineNumber = 0)
Parameters
Type | Name | Description |
---|---|---|
Client | client | |
string | entityName | |
bool | isOrphaned | If this set to true, then this test step will wait until entity becomes orphaned (i.e. no Client or Simulator has State authority over it). If this set to false, then this test step will wait until entity becomes non-orphaned (i.e. some Client or Simulator has State authority over it). |
bool | waitForEntityToExist | If this set to true, and entity by the given name does not exist when this test gets executed, then an exception will be thrown. If this set to false, and entity by the given name does not exist when this test gets executed, then the test will wait until the entity exists. |
int | lineNumber |
public WaitForIsOrphan(string entityName, bool isOrphaned = true, bool waitForEntityToExist = true, int lineNumber = 0)
Parameters
Type | Name | Description |
---|---|---|
string | entityName | |
bool | isOrphaned | If this set to true, then this test step will wait until entity becomes orphaned (i.e. no Client or Simulator has State authority over it). If this set to false, then this test step will wait until entity becomes non-orphaned (i.e. some Client or Simulator has State authority over it). |
bool | waitForEntityToExist | If this set to true, and entity by the given name does not exist when this test gets executed, then an exception will be thrown. If this set to false, and entity by the given name does not exist when this test gets executed, then the test will wait until the entity exists. |
int | lineNumber |