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;
            }