CheckAction() public static method

public static CheckAction ( string text ) : void
text string
return void
Beispiel #1
0
 public void SelectEnumTest()
 {
     ColorsControl.Select(Colors.Blue);
     CommonActionsData.CheckAction("Colors: value changed to Blue");
 }
Beispiel #2
0
 public void SetValueTest()
 {
     ColorsControl.Value = "Blue";
     CommonActionsData.CheckAction("Colors: value changed to Blue");
 }
Beispiel #3
0
 public void SelectIndexTest()
 {
     ColorsControl.Select(4);
     CommonActionsData.CheckAction("Colors: value changed to Blue");
 }