Ejemplo n.º 1
0
        public void Clone()
        {
            var test = new Test("test1");

            test.Section("a");
            test.Section("b");
            test.Section("c");


            Test test2 = theConverter.Clone(test);

            test2.Name.ShouldEqual("Clone of test1");
            test2.Parts.Count.ShouldEqual(3);
        }