github.com/cellofellow/gopkg@v0.0.0-20140722061823-eec0544a62ad/database/leveldb.chai2010/capi_test.go (about) 1 // Copyright 2013 <chaishushan{AT}gmail.com>. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package leveldb 6 7 import ( 8 "testing" 9 ) 10 11 // ---------------------------------------------------------------------------- 12 // Version 13 // ---------------------------------------------------------------------------- 14 15 func TestCapi_leveldb_major_version(t *testing.T) { 16 // 17 } 18 19 func TestCapi_leveldb_minor_version(t *testing.T) { 20 // 21 } 22 23 // ---------------------------------------------------------------------------- 24 // Slice 25 // ---------------------------------------------------------------------------- 26 27 func TestCapi_leveldb_slice_new(t *testing.T) { 28 // 29 } 30 31 func TestCapi_leveldb_slice_data(t *testing.T) { 32 // 33 } 34 35 // ---------------------------------------------------------------------------- 36 // Value 37 // ---------------------------------------------------------------------------- 38 39 func TestCapi_leveldb_value_create(t *testing.T) { 40 // 41 } 42 43 func TestCapi_leveldb_value_create_copy(t *testing.T) { 44 // 45 } 46 47 func TestCapi_leveldb_value_destroy(t *testing.T) { 48 // 49 } 50 51 func TestCapi_leveldb_value_data(t *testing.T) { 52 // 53 } 54 55 // ---------------------------------------------------------------------------- 56 // Status 57 // ---------------------------------------------------------------------------- 58 59 // remove string 60 // return enum Status 61 // errmsg to save err info 62 63 // ---------------------------------------------------------------------------- 64 // Options 65 // ---------------------------------------------------------------------------- 66 67 // ---------------------------------------------------------------------------- 68 // ReadOptions 69 // ---------------------------------------------------------------------------- 70 71 // ---------------------------------------------------------------------------- 72 // WriteOptions 73 // ---------------------------------------------------------------------------- 74 75 // ---------------------------------------------------------------------------- 76 // DB 77 // ---------------------------------------------------------------------------- 78 79 // ---------------------------------------------------------------------------- 80 // Iterator 81 // ---------------------------------------------------------------------------- 82 83 // ---------------------------------------------------------------------------- 84 // WriteBatch 85 // ---------------------------------------------------------------------------- 86 87 // ---------------------------------------------------------------------------- 88 // Comparator 89 // ---------------------------------------------------------------------------- 90 91 // ---------------------------------------------------------------------------- 92 // FilterPolicy 93 // ---------------------------------------------------------------------------- 94 95 // ---------------------------------------------------------------------------- 96 // Cache 97 // ---------------------------------------------------------------------------- 98 99 // ---------------------------------------------------------------------------- 100 // END 101 // ----------------------------------------------------------------------------