Example #1
0
 public void ValueOfVeriableIsEqualTo(string veriable, string value)
 {
     if (!DataShare.ContainsKey(veriable.ToUpper()))
     {
         throw new Exception("Veriable \"" + veriable + "\" is not defined.");
     }
     UiAutomationService.AreValuesEqual(DataShare[veriable.ToUpper()], value);
 }
Example #2
0
 public void ValueOfVeriableIsEqualTo(string veriable, string value)
 {
     if (!dataRepoManager.DataExists(veriable))
     {
         throw new Exception("Veriable \"" + veriable + "\" is not defined.");
     }
     UiAutomationService.AreValuesEqual(dataRepoManager.GetData(veriable), value);
 }