github.com/daeuniverse/quic-go@v0.0.0-20240413031024-943f218e0810/internal/protocol/params_test.go (about) 1 package protocol 2 3 import ( 4 . "github.com/onsi/ginkgo/v2" 5 . "github.com/onsi/gomega" 6 ) 7 8 var _ = Describe("Parameters", func() { 9 It("can queue more packets in the session than in the 0-RTT queue", func() { 10 Expect(MaxConnUnprocessedPackets).To(BeNumerically(">", Max0RTTQueueLen)) 11 Expect(MaxUndecryptablePackets).To(BeNumerically(">", Max0RTTQueueLen)) 12 }) 13 })