mirror of
https://github.com/cloudreve/cloudreve.git
synced 2026-06-28 14:56:10 +00:00
13 lines
217 B
Go
13 lines
217 B
Go
package balancer
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestNewBalancer(t *testing.T) {
|
|
a := assert.New(t)
|
|
a.NotNil(NewBalancer(""))
|
|
a.IsType(&RoundRobin{}, NewBalancer("RoundRobin"))
|
|
}
|