ezshare/store/memory_test.go
2021-12-05 01:00:32 +01:00

17 lines
288 B
Go

package store_test
import (
"testing"
"gitea.benny.dog/torjus/ezshare/store"
)
func TestMemoryFileStore(t *testing.T) {
s := store.NewMemoryStore()
doFileStoreTest(s, t)
}
func TestMemoryCertificateStore(t *testing.T) {
s := store.NewMemoryStore()
doCertificateStoreTest(s, t)
}