Esempio n. 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_read_shouldRetry_next() throws Exception
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
        internal virtual void ShouldGrantReadShouldRetryReadShouldRetryNext()
        {
            // GIVEN
            _cursor.getInt(0);
            _cursor.shouldRetry();
            _cursor.Long;

            // WHEN
            _cursor.shouldRetry();

            // THEN
            _cursor.next();
        }
Esempio n. 2
0
 public override int GetInt(int offset)
 {
     return(Delegate.getInt(offset));
 }
Esempio n. 3
0
 public override int getInt(int offset)
 {
     return(_current.getInt(offset));
 }