(t *testing.T)
| 119 | } |
| 120 | |
| 121 | func TestLDBTableParallelFuncs(t *testing.T) { |
| 122 | db, remove := newTestLDB() |
| 123 | defer remove() |
| 124 | |
| 125 | tbl := database.NewTable(db, "foobar") |
| 126 | defer tbl.Close() |
| 127 | |
| 128 | testParallelDBFuncs(tbl, t) |
| 129 | } |
| 130 | |
| 131 | func TestLDBTableBatch(t *testing.T) { |
| 132 | db, remove := newTestLDB() |
nothing calls this directly
no test coverage detected