You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/core/load/sheddergroup_test.go

16 lines
242 B
Go

package load
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGroup(t *testing.T) {
group := NewShedderGroup()
t.Run("get", func(t *testing.T) {
limiter := group.GetShedder("test")
assert.NotNil(t, limiter)
})
}