func BenchmarkTxSet(b *testing.B) { f, _ := ioutil.TempFile("", "") defer func() { os.Remove(f.Name()) }() e, err := Init(storage.Options{ "path": f.Name(), }) if err != nil { b.Fatal(err) } f.Close() test.BenchmarkTxSet(b, "boltdb", e) }
func BenchmarkTxSet(b *testing.B) { e, _ := Init(nil) test.BenchmarkTxSet(b, "memory", e) }