mirror of https://github.com/v2ray/v2ray-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
374 B
20 lines
374 B
package reverse_test |
|
|
|
import ( |
|
"testing" |
|
|
|
"v2ray.com/core/app/reverse" |
|
"v2ray.com/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") |
|
} |
|
}
|
|
|