forked from quic-go/quic-go
* use synctest to make streams map tests fully deterministic * ignore synctest helper package for code coverage
17 lines
185 B
Go
17 lines
185 B
Go
//go:build go1.25
|
|
|
|
package synctest
|
|
|
|
import (
|
|
"testing"
|
|
"testing/synctest"
|
|
)
|
|
|
|
func Test(t *testing.T, f func(t *testing.T)) {
|
|
synctest.Test(t, f)
|
|
}
|
|
|
|
func Wait() {
|
|
synctest.Wait()
|
|
}
|