1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-02 00:36:03 -04:00
v2fly/app/proxyman/outbound/handler_test.go
2018-01-10 12:22:37 +01:00

16 lines
258 B
Go

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))
}