1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 01:40:44 +00:00
v2fly/app/stats/stats_test.go
2018-03-30 19:56:59 +02:00

16 lines
239 B
Go

package stats_test
import (
"testing"
"v2ray.com/core"
. "v2ray.com/core/app/stats"
. "v2ray.com/ext/assert"
)
func TestInternface(t *testing.T) {
assert := With(t)
assert((*Manager)(nil), Implements, (*core.StatManager)(nil))
}