2018-01-10 11:22:37 +00:00
|
|
|
package outbound_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
. "v2ray.com/core/app/proxyman/outbound"
|
2018-10-11 18:43:37 +00:00
|
|
|
"v2ray.com/core/features/outbound"
|
2018-01-10 11:22:37 +00:00
|
|
|
. "v2ray.com/ext/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestInterfaces(t *testing.T) {
|
|
|
|
assert := With(t)
|
|
|
|
|
2018-10-11 18:43:37 +00:00
|
|
|
assert((*Handler)(nil), Implements, (*outbound.Handler)(nil))
|
2018-10-12 21:57:56 +00:00
|
|
|
assert((*Manager)(nil), Implements, (*outbound.Manager)(nil))
|
2018-01-10 11:22:37 +00:00
|
|
|
}
|