16 lines
304 B
Go
16 lines
304 B
Go
package adminstate_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"proxy-pool/internal/domain/adminstate"
|
|
"proxy-pool/internal/domain/adminstate/contracttest"
|
|
)
|
|
|
|
func TestMemoryStoreContract(t *testing.T) {
|
|
contracttest.Run(t, func(t *testing.T) adminstate.Store {
|
|
t.Helper()
|
|
return adminstate.NewMemoryStore()
|
|
})
|
|
}
|