1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
// Code generated by mockery v1.1.0. DO NOT EDIT.
package terminal
import (
http "net/http"
mock "github.com/stretchr/testify/mock"
)
// MockConn is an autogenerated mock type for the Conn type
type MockConn struct {
mock.Mock
}
// Close provides a mock function with given fields:
func (_m *MockConn) Close() error {
ret := _m.Called()
var r0 error
if rf, ok := ret.Get(0).(func() error); ok {
r0 = rf()
} else {
r0 = ret.Error(0)
}
return r0
}
// Start provides a mock function with given fields: w, r, timeoutCh, disconnectCh
func (_m *MockConn) Start(w http.ResponseWriter, r *http.Request, timeoutCh chan error, disconnectCh chan error) {
_m.Called(w, r, timeoutCh, disconnectCh)
}
|