mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
This doesn't yet implement the persistent congestion detection, since the specification of that still is in flux.
17 lines
491 B
Go
17 lines
491 B
Go
package ackhandler
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Send Mode", func() {
|
|
It("has a string representation", func() {
|
|
Expect(SendNone.String()).To(Equal("none"))
|
|
Expect(SendAny.String()).To(Equal("any"))
|
|
Expect(SendAck.String()).To(Equal("ack"))
|
|
Expect(SendPTO.String()).To(Equal("pto"))
|
|
Expect(SendRetransmission.String()).To(Equal("retransmission"))
|
|
Expect(SendMode(123).String()).To(Equal("invalid send mode: 123"))
|
|
})
|
|
})
|