Example #1
0
 internal static IValueProvider <T, T> Wait <T>(this IControlProperty <T> property)
 {
     return(ValueProvider.Create(property.Get, property.GetDescription));
 }
Example #2
0
 internal static void AssertEqualTo <T>(this IControlProperty <T> actual, T expected)
 {
     AssertEqualTo(actual.Get(), expected, actual.GetDescription());
 }
Example #3
0
 public static void Assert <T>(this IControlProperty <T> property, IResolveConstraint constraint)
 {
     NUnit.Framework.Assert.That(property.Get(), new ReusableConstraint(constraint), property.GetDescription());
 }
Example #4
0
 internal static void AssertStartsWith(this IControlProperty <string> actual, string expected)
 {
     AssertStartsWith(actual.Get(), expected, actual.GetDescription());
 }