示例#1
0
 public virtual bool IsDuplicate(TestContainer other)
 {
     if (other != this && this.HasFile(other.Source))
     {
         return this.Priority > other.Priority;
     }
     return false;
 }
 public override bool IsDuplicate(TestContainer other)
 {
     return base.IsDuplicate(other);
 }