mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
18 lines
499 B
Go
18 lines
499 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 before QUIC 39", func() {
|
|
Expect(GetByteOrder(protocol.Version36)).To(Equal(LittleEndian))
|
|
Expect(GetByteOrder(protocol.Version37)).To(Equal(LittleEndian))
|
|
})
|
|
|
|
It("says little Little Endian for QUIC 39", func() {
|
|
Expect(GetByteOrder(protocol.Version39)).To(Equal(BigEndian))
|
|
})
|
|
})
|