Exemple #1
0
 private bool IsTheSame(RegionEnd comparisonObject, ComparisonDepth depth)
 {
     if (comparisonObject == null)
     {
         return(false);
     }
     return(base.IsTheSame(comparisonObject, depth));
 }
 public VBRegionEndPrinter(RegionEnd obj)
 {
     this.obj = obj;
 }
Exemple #3
0
 private bool IsTheSame(RegionEnd comparisonObject, ComparisonDepth depth)
 {
     if (comparisonObject == null)
         return false;
     return base.IsTheSame(comparisonObject, depth);
 }
Exemple #4
0
 protected RegionEnd(RegionEnd reToCopyFrom)
     : base(null)
 {
     reToCopyFrom.CloneInto(this);
 }
        public void RegionEnd()
        {
            RegionEnd inter = new RegionEnd(controller, -1);

            Assert.That(inter.IsTheSame(inter.Clone(), ComparisonDepth.Outer), Is.True);
        }
Exemple #6
0
 protected RegionEnd(RegionEnd reToCopyFrom) : base(null)
 {
     reToCopyFrom.CloneInto(this);
 }