1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-05-09 22:19:07 -04:00

test case for interface

This commit is contained in:
Darien Raymond
2019-02-20 22:57:13 +01:00
parent 1531642768
commit b7c3e1da66

View File

@@ -131,6 +131,10 @@ func TestPipeWriteMultiThread(t *testing.T) {
func TestInterfaces(t *testing.T) {
_ = (buf.Reader)(new(Reader))
_ = (buf.TimeoutReader)(new(Reader))
_ = (common.Interruptible)(new(Reader))
_ = (common.Interruptible)(new(Writer))
_ = (common.Closable)(new(Writer))
}
func BenchmarkPipeReadWrite(b *testing.B) {