public void DeepCloneStringField() { var input = new StringClass(); var output = input.DeepClone(); Assert.AreSame(input.Value, output.Value); }