Beispiel #1
0
 public override bool Equals(object obj)
 {
     if (obj == this)
     {
         return(true);
     }
     if (!(obj is IntHandlerTestCase.Item))
     {
         return(false);
     }
     IntHandlerTestCase.Item other = (IntHandlerTestCase.Item)obj;
     return((other._int == this._int) && this._intWrapper.Equals(other._intWrapper));
 }
Beispiel #2
0
 /// <exception cref="System.Exception"></exception>
 public virtual void TestStoreObject()
 {
     IntHandlerTestCase.Item storedItem = new IntHandlerTestCase.Item(100, 200);
     DoTestStoreObject(storedItem);
 }
		/// <exception cref="System.Exception"></exception>
		public virtual void TestStoreObject()
		{
			IntHandlerTestCase.Item storedItem = new IntHandlerTestCase.Item(100, 200);
			DoTestStoreObject(storedItem);
		}