public void SetMaxStorageSize()
        {
            // Prepare data.
            InitializeStorageAdapter();

            // Set storage max size and verify.
            var dbSize  = 2 * 1024 * 1024;
            var success = _adapter.SetMaxStorageSize(dbSize);

            Assert.IsTrue(success);
        }