handler_test.go 239 B

12345678910111213
  1. package outbound_test
  2. import (
  3. "testing"
  4. . "v2ray.com/core/app/proxyman/outbound"
  5. "v2ray.com/core/features/outbound"
  6. )
  7. func TestInterfaces(t *testing.T) {
  8. _ = (outbound.Handler)(new(Handler))
  9. _ = (outbound.Manager)(new(Manager))
  10. }