Beispiel #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test void shouldGrant_read_shouldRetry_next() throws Exception
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
        internal virtual void ShouldGrantReadShouldRetryNext()
        {
            // GIVEN
            _cursor.getByte(0);

            // WHEN
            _cursor.shouldRetry();

            // THEN
            _cursor.next();
        }
 public override sbyte getByte(int offset)
 {
     return(Delegate.getByte(offset));
 }
Beispiel #3
0
 public override sbyte getByte(int offset)
 {
     return(_current.getByte(offset));
 }