handler_test.go 258 B

123456789101112131415
  1. package outbound_test
  2. import (
  3. "testing"
  4. "v2ray.com/core"
  5. . "v2ray.com/core/app/proxyman/outbound"
  6. . "v2ray.com/ext/assert"
  7. )
  8. func TestInterfaces(t *testing.T) {
  9. assert := With(t)
  10. assert((*Handler)(nil), Implements, (*core.OutboundHandler)(nil))
  11. }