1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 10:45:22 +00:00
v2fly/app/proxyman/outbound/handler_test.go

17 lines
332 B
Go
Raw Normal View History

package outbound_test
import (
"testing"
"v2ray.com/core"
. "v2ray.com/core/app/proxyman/outbound"
. "v2ray.com/ext/assert"
)
func TestInterfaces(t *testing.T) {
assert := With(t)
assert((*Handler)(nil), Implements, (*core.OutboundHandler)(nil))
2018-02-07 11:38:12 +00:00
assert((*Manager)(nil), Implements, (*core.OutboundHandlerManager)(nil))
}