stats_test.go 239 B

123456789101112131415
  1. package stats_test
  2. import (
  3. "testing"
  4. "v2ray.com/core"
  5. . "v2ray.com/core/app/stats"
  6. . "v2ray.com/ext/assert"
  7. )
  8. func TestInternface(t *testing.T) {
  9. assert := With(t)
  10. assert((*Manager)(nil), Implements, (*core.StatManager)(nil))
  11. }