v2ray-core/app/stats/stats_test.go

16 lines
239 B
Go
Raw Normal View History

2018-03-30 19:56:59 +02:00
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))
}