10 lines
190 B
Go
10 lines
190 B
Go
|
package solver
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestMemoryCacheStorage(t *testing.T) {
|
||
|
RunCacheStorageTests(t, func() (CacheKeyStorage, func()) {
|
||
|
return NewInMemoryCacheStorage(), func() {}
|
||
|
})
|
||
|
}
|