mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 09:56:18 -05:00
20 lines
418 B
Go
20 lines
418 B
Go
package net_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/v2ray/v2ray-core/common/net"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
)
|
|
|
|
func TestTimeOutSettings(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
reader := NewTimeOutReader(8, nil)
|
|
assert.Int(reader.GetTimeOut()).Equals(8)
|
|
reader.SetTimeOut(8) // no op
|
|
assert.Int(reader.GetTimeOut()).Equals(8)
|
|
reader.SetTimeOut(9)
|
|
assert.Int(reader.GetTimeOut()).Equals(9)
|
|
}
|