github.com/metacubex/quic-go@v0.44.1-0.20240520163451-20b689a59136/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  })