/// <summary>
 /// Copy constructor.
 /// </summary>
 /// <param name="other">The other test descriptor to copy values from.</param>
 public NativeInputReaderTestDescriptor(NativeInputReaderTestDescriptor other)
     : base(other)
 {
     this.AtomInput     = other.AtomInput;
     this.AtomInputXml  = other.AtomInputXml;
     this.JsonInputText = other.JsonInputText;
     this.JsonInput     = other.JsonInput;
     this.DefaultInput  = other.DefaultInput;
     this.InputCreator  = other.InputCreator;
 }
 /// <summary>
 /// Copy constructor.
 /// </summary>
 /// <param name="other">The other test descriptor to copy values from.</param>
 public NativeInputReaderTestDescriptor(NativeInputReaderTestDescriptor other)
     :base(other)
 {
     this.AtomInput = other.AtomInput;
     this.AtomInputXml = other.AtomInputXml;
     this.JsonInputText = other.JsonInputText;
     this.JsonInput = other.JsonInput;
     this.DefaultInput = other.DefaultInput;
     this.InputCreator = other.InputCreator;
 }