mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
14 lines
269 B
Go
14 lines
269 B
Go
|
package framework
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/fatedier/frp/test/e2e/pkg/request"
|
||
|
)
|
||
|
|
||
|
func ExpectTCPReuqest(port int, in, out []byte, timeout time.Duration) {
|
||
|
res, err := request.SendTCPRequest(port, in, timeout)
|
||
|
ExpectNoError(err)
|
||
|
ExpectEqual(string(out), res)
|
||
|
}
|