public void ShallowCopy()
        {
            // Type
            var @this = new TestClass {Value = "Fizz"};

            // Exemples
            TestClass clone = @this.ShallowCopy(); // return a shallow copy;

            // Unit Test
            Assert.AreEqual(@this.Value, clone.Value);
        }