mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
10 lines
139 B
Go
10 lines
139 B
Go
|
package store
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestStdStore(t *testing.T) {
|
||
|
testStore(t, func() (Store, error) {
|
||
|
return NewStdStore(), nil
|
||
|
})
|
||
|
}
|