mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
* implement and use ringbuffer in framer * Add comments for ring buffer Co-authored-by: Marten Seemann <martenseemann@gmail.com> --------- Co-authored-by: Marten Seemann <martenseemann@gmail.com>
13 lines
199 B
Go
13 lines
199 B
Go
package ringbuffer
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestTestdata(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "ringbuffer suite")
|
|
}
|