src\Shared\Http2cat\Http2Utilities.cs (13)
165await ExpectAsync(Http2FrameType.SETTINGS,
170await ExpectAsync(Http2FrameType.WINDOW_UPDATE,
175await ExpectAsync(Http2FrameType.SETTINGS,
233Assert.Equal(Http2FrameType.HEADERS, frame.Type);
492frame.Type = Http2FrameType.PUSH_PROMISE;
827frame.Type = (Http2FrameType)frameType;
872internal async Task<Http2FrameWithPayload> ExpectAsync(Http2FrameType type, int withLength, byte withFlags, int withStreamId)
903Assert.Equal(Http2FrameType.HEADERS, headersFrame.Type);
916Assert.Equal(Http2FrameType.DATA, frame.Type);
924Assert.Equal(Http2FrameType.GOAWAY, frame.Type);
934Assert.Equal(Http2FrameType.RST_STREAM, frame.Type);
955while (frame.Type != Http2FrameType.GOAWAY)
968Assert.Equal(Http2FrameType.RST_STREAM, frame.Type);