protected virtual bool DoMatch(NUnitCtr.Constraint ctr)
 {
     return ctr.Matches(actual);
 }
 protected override bool DoMatch(NUnitCtr.Constraint ctr)
 {
     if (specific == null)
             return ctr.Matches(actual);
         else
             return SpecificMatches(actual);
 }