Skip to content

Commit

Permalink
Regenerate handler mock
Browse files Browse the repository at this point in the history
  • Loading branch information
acj committed Jun 3, 2018
1 parent cb96d06 commit 326986c
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions handler_mock_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
package tusd_test

import (
io "io"

gomock "github.com/golang/mock/gomock"
tusd "github.com/tus/tusd"
io "io"
)

// Mock of FullDataStore interface
Expand Down Expand Up @@ -105,6 +104,16 @@ func (_mr *_MockFullDataStoreRecorder) FinishUpload(arg0 interface{}) *gomock.Ca
return _mr.mock.ctrl.RecordCall(_mr.mock, "FinishUpload", arg0)
}

func (_m *MockFullDataStore) DeclareLength(id string, length int64) error {
ret := _m.ctrl.Call(_m, "DeclareLength", id, length)
ret0, _ := ret[0].(error)
return ret0
}

func (_mr *_MockFullDataStoreRecorder) DeclareLength(arg0, arg1 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "DeclareLength", arg0, arg1)
}

// Mock of Locker interface
type MockLocker struct {
ctrl *gomock.Controller
Expand Down

0 comments on commit 326986c

Please sign in to comment.