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.
20 lines
396 B
20 lines
396 B
package reverse_test |
|
|
|
import ( |
|
"testing" |
|
|
|
"github.com/xtls/xray-core/app/reverse" |
|
"github.com/xtls/xray-core/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") |
|
} |
|
}
|
|
|