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)); }
/// <exception cref="System.Exception"></exception> public virtual void TestStoreObject() { IntHandlerTestCase.Item storedItem = new IntHandlerTestCase.Item(100, 200); DoTestStoreObject(storedItem); }