mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 12:17:35 +03:00
use a gomock packet unpacker
This commit is contained in:
parent
6c1eba5848
commit
a298bd01c9
3 changed files with 72 additions and 20 deletions
48
mock_unpacker_test.go
Normal file
48
mock_unpacker_test.go
Normal file
|
@ -0,0 +1,48 @@
|
|||
// Code generated by MockGen. DO NOT EDIT.
|
||||
// Source: github.com/lucas-clemente/quic-go (interfaces: Unpacker)
|
||||
|
||||
// Package quic is a generated GoMock package.
|
||||
package quic
|
||||
|
||||
import (
|
||||
reflect "reflect"
|
||||
|
||||
gomock "github.com/golang/mock/gomock"
|
||||
wire "github.com/lucas-clemente/quic-go/internal/wire"
|
||||
)
|
||||
|
||||
// MockUnpacker is a mock of Unpacker interface
|
||||
type MockUnpacker struct {
|
||||
ctrl *gomock.Controller
|
||||
recorder *MockUnpackerMockRecorder
|
||||
}
|
||||
|
||||
// MockUnpackerMockRecorder is the mock recorder for MockUnpacker
|
||||
type MockUnpackerMockRecorder struct {
|
||||
mock *MockUnpacker
|
||||
}
|
||||
|
||||
// NewMockUnpacker creates a new mock instance
|
||||
func NewMockUnpacker(ctrl *gomock.Controller) *MockUnpacker {
|
||||
mock := &MockUnpacker{ctrl: ctrl}
|
||||
mock.recorder = &MockUnpackerMockRecorder{mock}
|
||||
return mock
|
||||
}
|
||||
|
||||
// EXPECT returns an object that allows the caller to indicate expected use
|
||||
func (m *MockUnpacker) EXPECT() *MockUnpackerMockRecorder {
|
||||
return m.recorder
|
||||
}
|
||||
|
||||
// Unpack mocks base method
|
||||
func (m *MockUnpacker) Unpack(arg0 []byte, arg1 *wire.Header, arg2 []byte) (*unpackedPacket, error) {
|
||||
ret := m.ctrl.Call(m, "Unpack", arg0, arg1, arg2)
|
||||
ret0, _ := ret[0].(*unpackedPacket)
|
||||
ret1, _ := ret[1].(error)
|
||||
return ret0, ret1
|
||||
}
|
||||
|
||||
// Unpack indicates an expected call of Unpack
|
||||
func (mr *MockUnpackerMockRecorder) Unpack(arg0, arg1, arg2 interface{}) *gomock.Call {
|
||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Unpack", reflect.TypeOf((*MockUnpacker)(nil).Unpack), arg0, arg1, arg2)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue