12 lines
149 B
Go
12 lines
149 B
Go
package random
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/micro/go-micro/v3/selector"
|
|
)
|
|
|
|
func TestRandom(t *testing.T) {
|
|
selector.Tests(t, NewSelector())
|
|
}
|