1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00
v2fly/app/reverse/portal_test.go

21 lines
406 B
Go
Raw Normal View History

2018-10-27 18:03:11 -04:00
package reverse_test
import (
"testing"
2021-02-16 15:31:50 -05:00
"github.com/v2fly/v2ray-core/v4/app/reverse"
"github.com/v2fly/v2ray-core/v4/common"
2018-10-27 18:03:11 -04:00
)
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")
}
}