Example #1
0
            public void Copy(IChildTestClass source, IChildTestClass target, ICopyCallContext copyCallContext)
            {
                source.Should().NotBeNull();
                target.Should().NotBeNull();
                copyCallContext.Should().NotBeNull();

                target.TestValue = source.TestValue * 2;
            }
Example #2
0
 public bool IsResponsible(IChildTestClass criterion)
 {
     // For Test purposes.
     return(true);
 }