mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
402 B
21 lines
402 B
4 years ago
|
package reverse_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/xtls/xray-core/v1/app/reverse"
|
||
|
"github.com/xtls/xray-core/v1/common"
|
||
|
)
|
||
|
|
||
|
func TestStaticPickerEmpty(t *testing.T) {
|
||
|
picker, err := reverse.NewStaticMuxPicker()
|
||
|
common.Must(err)
|
||
|
worker, err := picker.PickAvailable()
|
||
|
if err == nil {
|
||
|
t.Error("expected error, but nil")
|
||
|
}
|
||
|
if worker != nil {
|
||
|
t.Error("expected nil worker, but not nil")
|
||
|
}
|
||
|
}
|