BTDBTest.KeyValueDBTest.PrefixWithFindPrevKeyWorks C# (CSharp) Method

PrefixWithFindPrevKeyWorks() private method

private PrefixWithFindPrevKeyWorks ( ) : void
return void
        public void PrefixWithFindPrevKeyWorks()
        {
            using (var fileCollection = new InMemoryFileCollection())
            using (IKeyValueDB db = new KeyValueDB(fileCollection))
            {
                using (var tr = db.StartTransaction())
                {
                    tr.CreateKey(_key1);
                    tr.CreateKey(Key2);
                    tr.SetKeyPrefix(ByteBuffer.NewAsync(Key2, 0, 1));
                    Assert.True(tr.FindFirstKey());
                    Assert.False(tr.FindPreviousKey());
                    tr.Commit();
                }
            }
        }