mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
64 lines
2.2 KiB
Go
64 lines
2.2 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: github.com/refraction-networking/uquic (interfaces: CryptoDataHandler)
|
|
|
|
// Package quic is a generated GoMock package.
|
|
package quic
|
|
|
|
import (
|
|
reflect "reflect"
|
|
|
|
gomock "github.com/golang/mock/gomock"
|
|
handshake "github.com/refraction-networking/uquic/internal/handshake"
|
|
protocol "github.com/refraction-networking/uquic/internal/protocol"
|
|
)
|
|
|
|
// MockCryptoDataHandler is a mock of CryptoDataHandler interface.
|
|
type MockCryptoDataHandler struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockCryptoDataHandlerMockRecorder
|
|
}
|
|
|
|
// MockCryptoDataHandlerMockRecorder is the mock recorder for MockCryptoDataHandler.
|
|
type MockCryptoDataHandlerMockRecorder struct {
|
|
mock *MockCryptoDataHandler
|
|
}
|
|
|
|
// NewMockCryptoDataHandler creates a new mock instance.
|
|
func NewMockCryptoDataHandler(ctrl *gomock.Controller) *MockCryptoDataHandler {
|
|
mock := &MockCryptoDataHandler{ctrl: ctrl}
|
|
mock.recorder = &MockCryptoDataHandlerMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
func (m *MockCryptoDataHandler) EXPECT() *MockCryptoDataHandlerMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// HandleMessage mocks base method.
|
|
func (m *MockCryptoDataHandler) HandleMessage(arg0 []byte, arg1 protocol.EncryptionLevel) error {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "HandleMessage", arg0, arg1)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// HandleMessage indicates an expected call of HandleMessage.
|
|
func (mr *MockCryptoDataHandlerMockRecorder) HandleMessage(arg0, arg1 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "HandleMessage", reflect.TypeOf((*MockCryptoDataHandler)(nil).HandleMessage), arg0, arg1)
|
|
}
|
|
|
|
// NextEvent mocks base method.
|
|
func (m *MockCryptoDataHandler) NextEvent() handshake.Event {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "NextEvent")
|
|
ret0, _ := ret[0].(handshake.Event)
|
|
return ret0
|
|
}
|
|
|
|
// NextEvent indicates an expected call of NextEvent.
|
|
func (mr *MockCryptoDataHandlerMockRecorder) NextEvent() *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "NextEvent", reflect.TypeOf((*MockCryptoDataHandler)(nil).NextEvent))
|
|
}
|