コード例 #1
0
ファイル: BTreeCursorTest.cs プロジェクト: joegana/BDBC
        public void TestRecnoWithRMW()
        {
            testName = "TestRecnoWithRMW";
            SetUpTest(true);

            // Use MoveCursorToRecno() as its move function.
            btCursorFunc = new BTCursorMoveFuncDelegate(
                ReturnRecno);

            // Move to a specified key and a key/data pair.
            MoveWithRMW(testHome, testName);
        }
コード例 #2
0
ファイル: BTreeCursorTest.cs プロジェクト: ljrk0/DIR882A1-GPL
        public void TestMoveToRecnoWithRMW()
        {
            testName = "TestMoveToRecnoWithRMW";
            testHome = testFixtureHome + "/" + testName;
            Configuration.ClearDir(testHome);

            btCursorFunc = new BTCursorMoveFuncDelegate(
                MoveCursorToRecno);

            // Move to a specified key and a key/data pair.
            MoveWithRMW(testHome, testName);
        }
コード例 #3
0
        public void TestRecnoWithRMW()
        {
            testName = "TestRecnoWithRMW";
            SetUpTest(true);

            // Use MoveCursorToRecno() as its move function.
            btCursorFunc = new BTCursorMoveFuncDelegate(
                ReturnRecno);

            // Move to a specified key and a key/data pair.
            MoveWithRMW(testHome, testName);
        }
コード例 #4
0
        public void TestMoveToRecnoWithRMW()
        {
            testName = "TestMoveToRecnoWithRMW";
            SetUpTest(true);

            btCursorFunc = new BTCursorMoveFuncDelegate(
                MoveCursorToRecno);

            // Move to a specified key and a key/data pair.
            MoveWithRMW(testHome, testName);
        }
コード例 #5
0
ファイル: BTreeCursorTest.cs プロジェクト: kanbang/Colt
        public void TestRecnoWithRMW()
        {
            testName = "TestRecnoWithRMW";
            testHome = testFixtureHome + "/" + testName;
            Configuration.ClearDir(testHome);

            // Use MoveCursorToRecno() as its move function.
            btCursorFunc = new BTCursorMoveFuncDelegate(
                ReturnRecno);

            // Move to a specified key and a key/data pair.
            MoveWithRMW(testHome, testName);
        }