public override bool Equals(object obj)
 {
     if (obj == this)
     {
         return(true);
     }
     if (!(obj is BooleanHandlerTestCase.Item))
     {
         return(false);
     }
     BooleanHandlerTestCase.Item other = (BooleanHandlerTestCase.Item)obj;
     return((other._bool == this._bool) && this._boolWrapper.Equals(other._boolWrapper
                                                                    ));
 }
 /// <exception cref="System.Exception"></exception>
 public virtual void TestStoreObject()
 {
     BooleanHandlerTestCase.Item storedItem = new BooleanHandlerTestCase.Item(false, true
                                                                              );
     DoTestStoreObject(storedItem);
 }
		/// <exception cref="System.Exception"></exception>
		public virtual void TestStoreObject()
		{
			BooleanHandlerTestCase.Item storedItem = new BooleanHandlerTestCase.Item(false, true
				);
			DoTestStoreObject(storedItem);
		}