コード例 #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_with_id() throws Exception
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
        internal virtual void ShouldGrantReadShouldRetryReadShouldRetryNextWithId()
        {
            // GIVEN
            _cursor.getLong(0);
            _cursor.shouldRetry();
            _cursor.getBytes(new sbyte[2]);

            // WHEN
            _cursor.shouldRetry();

            // THEN
            _cursor.next(1);
        }
コード例 #2
0
 public override void GetBytes(sbyte[] data)
 {
     Delegate.getBytes(data);
 }
コード例 #3
0
 public override void GetBytes(sbyte[] data)
 {
     _current.getBytes(data);
 }