mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
add stream.StreamID()
This commit is contained in:
parent
967a5c401c
commit
9f63cdbd91
5 changed files with 17 additions and 0 deletions
|
@ -33,6 +33,10 @@ var _ = Describe("Stream", func() {
|
|||
str, _ = newStream(handler, cpm, 1337)
|
||||
})
|
||||
|
||||
It("gets stream id", func() {
|
||||
Expect(str.StreamID()).To(Equal(protocol.StreamID(1337)))
|
||||
})
|
||||
|
||||
Context("reading", func() {
|
||||
It("reads a single StreamFrame", func() {
|
||||
frame := frames.StreamFrame{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue