public void ShouldMatchText()
 {
     PropertyFilterPredicate predicate = new PropertyFilterPredicate("test");
       Assert.IsTrue(predicate.Match("Test"));
       Assert.IsTrue(predicate.Match("TestMe"));
       Assert.IsTrue(predicate.Match("ThisIsATest"));
 }
Exemple #2
0
 /// <summary>
 /// Checks whether the entry matches the filtering predicate.
 /// </summary>
 /// <param name="predicate">The filtering predicate.</param>
 /// <returns>
 ///     <c>true</c> if entry matches predicate; otherwise, <c>false</c>.
 /// </returns>
 public override bool MatchesPredicate(PropertyFilterPredicate predicate)
 {
     if (predicate == null)
     {
         return(false);
     }
     if (!predicate.Match(this.DisplayName))
     {
         return((PropertyType != null)
   ? predicate.Match(PropertyType.Name)
   : false);
     }
     return(true);
 }
Exemple #3
0
 /// <summary>
 /// Checks whether the entry matches the filtering predicate.
 /// </summary>
 /// <param name="predicate">The filtering predicate.</param>
 /// <returns>
 ///     <c>true</c> if entry matches predicate; otherwise, <c>false</c>.
 /// </returns>
 public override bool MatchesPredicate(PropertyFilterPredicate predicate)
 {
     return(_properties.All(property => property.MatchesPredicate(predicate)));
 }
Exemple #4
0
 /// <summary>
 /// Checks whether the entry matches the filtering predicate.
 /// </summary>
 /// <param name="predicate">The filtering predicate.</param>        
 /// <returns><c>true</c> if entry matches predicate; otherwise, <c>false</c>.</returns>
 public abstract bool MatchesPredicate(PropertyFilterPredicate predicate);
Exemple #5
0
 /// <summary>
 /// Checks whether the entry matches the filtering predicate.
 /// </summary>
 /// <param name="predicate">The filtering predicate.</param>
 /// <returns>
 /// 	<c>true</c> if entry matches predicate; otherwise, <c>false</c>.
 /// </returns>   
 public override bool MatchesPredicate(PropertyFilterPredicate predicate)
 {
     return _properties.All(property => property.MatchesPredicate(predicate));
 }
 public override bool MatchesPredicate(PropertyFilterPredicate predicate)
 {
     return false;
 }
Exemple #7
0
 /// <summary>
 /// Checks whether the entry matches the filtering predicate.
 /// </summary>
 /// <param name="predicate">The filtering predicate.</param>
 /// <returns><c>true</c> if entry matches predicate; otherwise, <c>false</c>.</returns>
 public abstract bool MatchesPredicate(PropertyFilterPredicate predicate);
Exemple #8
0
 public bool MatchesPredicate(PropertyFilterPredicate predicate)
 {
     if (predicate == null) return false;
     return predicate.Match(this.Name);
 }
 public void ShouldInitializeMatchTextUpperCased()
 {
     PropertyFilterPredicate predicate = new PropertyFilterPredicate("test");
       Assert.AreEqual<string>("TEST", predicate.MatchText);
 }