mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
17 lines
398 B
Go
17 lines
398 B
Go
package protocol
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Connection ID generation", func() {
|
|
It("generates random connection IDs", func() {
|
|
c1, err := GenerateConnectionID()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(c1).ToNot(BeZero())
|
|
c2, err := GenerateConnectionID()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(c1).ToNot(Equal(c2))
|
|
})
|
|
})
|