mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
14 lines
376 B
Go
14 lines
376 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Byte Order", func() {
|
|
It("says little Little Endian for QUIC 39 and TLS", func() {
|
|
Expect(GetByteOrder(protocol.Version39)).To(Equal(BigEndian))
|
|
Expect(GetByteOrder(protocol.VersionTLS)).To(Equal(BigEndian))
|
|
})
|
|
})
|