Esempio n. 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;
 }
Esempio n. 3
0
 private bool IsTheSame(RegionEnd comparisonObject, ComparisonDepth depth)
 {
     if (comparisonObject == null)
         return false;
     return base.IsTheSame(comparisonObject, depth);
 }
Esempio n. 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);
        }
Esempio n. 6
0
 protected RegionEnd(RegionEnd reToCopyFrom) : base(null)
 {
     reToCopyFrom.CloneInto(this);
 }