public static CompoundControlAssertions <CompoundControl> ExpectTo(this CompoundControl control)
 {
     return(ExpectTo(new SingleItemAssertable <CompoundControl>(control)));
 }
Beispiel #2
0
 public static void WaitTextContains(this CompoundControl button, params string[] substrings)
 {
     button.Text.Wait().That(ContainsMany(substrings));
 }
Beispiel #3
0
 public void OnInit(CompoundControl control)
 {
     IntializeControlBases(control);
 }
Beispiel #4
0
 public static void WaitText(this CompoundControl compoundControl, string text)
 {
     compoundControl.Text.Wait().That(Is.EqualTo(text));
 }