예제 #1
0
 private bool IsTheSame(RegionStart comparisonObject, ComparisonDepth depth)
 {
     if (comparisonObject == null)
     {
         return(false);
     }
     return(base.IsTheSame(comparisonObject, depth));
 }
예제 #2
0
 private bool IsTheSame(RegionStart comparisonObject, ComparisonDepth depth)
 {
     if (comparisonObject == null)
         return false;
     return base.IsTheSame(comparisonObject, depth);
 }
예제 #3
0
 private RegionStart(RegionStart reToCopyFrom)
     : base(null)
 {
     reToCopyFrom.CloneInto(this);
 }
예제 #4
0
 public VBRegionStartPrinter(RegionStart obj)
 {
     this.obj = obj;
 }
        public void RegionStart()
        {
            RegionStart inter = new RegionStart(controller, "Start", -1);

            Assert.That(inter.IsTheSame(inter.Clone(), ComparisonDepth.Outer), Is.True);
        }
예제 #6
0
 private RegionStart(RegionStart reToCopyFrom)
     : base(null)
 {
     reToCopyFrom.CloneInto(this);
 }