public bool Equals(JsonTestObject other)
 {
     if (ReferenceEquals(null, other))
     {
         return false;
     }
     if (ReferenceEquals(this, other))
     {
         return true;
     }
     return Equals(other.Name, Name) && Equals(other.Email, Email);
 }
        public virtual void SetUp()
        {
            serializer = new JsonDataSerializer();

            testObject = new JsonTestObject("cmartin", "*****@*****.**");
        }