public bool Equals(Test other)
 {
     if (other == null)
     {
         return(false);
     }
     return(Test1.Equals(other.Test1) &&
            Test2.Equals(other.Test2) &&
            Test3.Equals(other.Test3));
 }