1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 10:08:15 -05:00

Remove useless test

This commit is contained in:
Shelikhoo 2016-08-14 09:23:24 +08:00
parent 1fe090dbfd
commit 3e9e9b520e
No known key found for this signature in database
GPG Key ID: 7791BDB0709ABD21

View File

@ -1,19 +0,0 @@
package ws_test
import (
"net"
"testing"
"github.com/v2ray/v2ray-core/testing/assert"
. "github.com/v2ray/v2ray-core/transport/internet/tcp"
)
func TestRawConnection(t *testing.T) {
assert := assert.On(t)
rawConn := RawConnection{net.TCPConn{}}
assert.Bool(rawConn.Reusable()).IsFalse()
rawConn.SetReusable(true)
assert.Bool(rawConn.Reusable()).IsFalse()
}