mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
regenerate all gomocks after gomock output format was changed
No functional change expected.
This commit is contained in:
parent
552be1f403
commit
d4f904b55b
9 changed files with 271 additions and 262 deletions
|
@ -1,6 +1,7 @@
|
|||
// Code generated by MockGen. DO NOT EDIT.
|
||||
// Source: github.com/lucas-clemente/quic-go (interfaces: StreamSender)
|
||||
|
||||
// Package quic is a generated GoMock package.
|
||||
package quic
|
||||
|
||||
import (
|
||||
|
@ -29,36 +30,36 @@ func NewMockStreamSender(ctrl *gomock.Controller) *MockStreamSender {
|
|||
}
|
||||
|
||||
// EXPECT returns an object that allows the caller to indicate expected use
|
||||
func (_m *MockStreamSender) EXPECT() *MockStreamSenderMockRecorder {
|
||||
return _m.recorder
|
||||
func (m *MockStreamSender) EXPECT() *MockStreamSenderMockRecorder {
|
||||
return m.recorder
|
||||
}
|
||||
|
||||
// onHasWindowUpdate mocks base method
|
||||
func (_m *MockStreamSender) onHasWindowUpdate(_param0 protocol.StreamID, _param1 protocol.ByteCount) {
|
||||
_m.ctrl.Call(_m, "onHasWindowUpdate", _param0, _param1)
|
||||
func (m *MockStreamSender) onHasWindowUpdate(arg0 protocol.StreamID, arg1 protocol.ByteCount) {
|
||||
m.ctrl.Call(m, "onHasWindowUpdate", arg0, arg1)
|
||||
}
|
||||
|
||||
// onHasWindowUpdate indicates an expected call of onHasWindowUpdate
|
||||
func (_mr *MockStreamSenderMockRecorder) onHasWindowUpdate(arg0, arg1 interface{}) *gomock.Call {
|
||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "onHasWindowUpdate", reflect.TypeOf((*MockStreamSender)(nil).onHasWindowUpdate), arg0, arg1)
|
||||
func (mr *MockStreamSenderMockRecorder) onHasWindowUpdate(arg0, arg1 interface{}) *gomock.Call {
|
||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "onHasWindowUpdate", reflect.TypeOf((*MockStreamSender)(nil).onHasWindowUpdate), arg0, arg1)
|
||||
}
|
||||
|
||||
// queueControlFrame mocks base method
|
||||
func (_m *MockStreamSender) queueControlFrame(_param0 wire.Frame) {
|
||||
_m.ctrl.Call(_m, "queueControlFrame", _param0)
|
||||
func (m *MockStreamSender) queueControlFrame(arg0 wire.Frame) {
|
||||
m.ctrl.Call(m, "queueControlFrame", arg0)
|
||||
}
|
||||
|
||||
// queueControlFrame indicates an expected call of queueControlFrame
|
||||
func (_mr *MockStreamSenderMockRecorder) queueControlFrame(arg0 interface{}) *gomock.Call {
|
||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "queueControlFrame", reflect.TypeOf((*MockStreamSender)(nil).queueControlFrame), arg0)
|
||||
func (mr *MockStreamSenderMockRecorder) queueControlFrame(arg0 interface{}) *gomock.Call {
|
||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "queueControlFrame", reflect.TypeOf((*MockStreamSender)(nil).queueControlFrame), arg0)
|
||||
}
|
||||
|
||||
// scheduleSending mocks base method
|
||||
func (_m *MockStreamSender) scheduleSending() {
|
||||
_m.ctrl.Call(_m, "scheduleSending")
|
||||
func (m *MockStreamSender) scheduleSending() {
|
||||
m.ctrl.Call(m, "scheduleSending")
|
||||
}
|
||||
|
||||
// scheduleSending indicates an expected call of scheduleSending
|
||||
func (_mr *MockStreamSenderMockRecorder) scheduleSending() *gomock.Call {
|
||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "scheduleSending", reflect.TypeOf((*MockStreamSender)(nil).scheduleSending))
|
||||
func (mr *MockStreamSenderMockRecorder) scheduleSending() *gomock.Call {
|
||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "scheduleSending", reflect.TypeOf((*MockStreamSender)(nil).scheduleSending))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue