| 123456789101112131415161718192021222324252627282930313233 |
- // SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
- // SPDX-License-Identifier: MIT
- //go:build !js
- // +build !js
- package dtls
- import (
- "net"
- "testing"
- "time"
- "github.com/pion/transport/v2/test"
- "golang.org/x/net/nettest"
- )
- func TestNetTest(t *testing.T) {
- lim := test.TimeOut(time.Minute*1 + time.Second*10)
- defer lim.Stop()
- nettest.TestConn(t, func() (c1, c2 net.Conn, stop func(), err error) {
- c1, c2, err = pipeMemory()
- if err != nil {
- return nil, nil, nil, err
- }
- stop = func() {
- _ = c1.Close()
- _ = c2.Close()
- }
- return
- })
- }
|