public override bool Equals(object obj)
 {
     if (obj == this)
     {
         return(true);
     }
     if (!(obj is ByteHandlerTestCase.Item))
     {
         return(false);
     }
     ByteHandlerTestCase.Item other = (ByteHandlerTestCase.Item)obj;
     return((other._byte == this._byte) && this._byteWrapper.Equals(other._byteWrapper
                                                                    ));
 }
Exemplo n.º 2
0
		/// <exception cref="System.Exception"></exception>
		public virtual void TestStoreObject()
		{
			ByteHandlerTestCase.Item storedItem = new ByteHandlerTestCase.Item((byte)5, (byte
				)6);
			DoTestStoreObject(storedItem);
		}
 /// <exception cref="System.Exception"></exception>
 public virtual void TestStoreObject()
 {
     ByteHandlerTestCase.Item storedItem = new ByteHandlerTestCase.Item((byte)5, (byte
                                                                                  )6);
     DoTestStoreObject(storedItem);
 }