mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 02:16:10 -05:00
17 lines
332 B
Go
17 lines
332 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))
|
|
assert((*Manager)(nil), Implements, (*core.OutboundHandlerManager)(nil))
|
|
}
|