-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock_nuclei.go
52 lines (43 loc) · 1.75 KB
/
mock_nuclei.go
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Code generated by MockGen. DO NOT EDIT.
// Source: interface.go
// Package main is a generated GoMock package.
package main
import (
reflect "reflect"
gomock "github.com/golang/mock/gomock"
output "github.com/projectdiscovery/nuclei/v3/pkg/output"
templates "github.com/projectdiscovery/nuclei/v3/pkg/templates"
)
// MockNucleiInterface is a mock of NucleiInterface interface.
type MockNucleiInterface struct {
ctrl *gomock.Controller
recorder *MockNucleiInterfaceMockRecorder
}
// MockNucleiInterfaceMockRecorder is the mock recorder for MockNucleiInterface.
type MockNucleiInterfaceMockRecorder struct {
mock *MockNucleiInterface
}
// NewMockNucleiInterface creates a new mock instance.
func NewMockNucleiInterface(ctrl *gomock.Controller) *MockNucleiInterface {
mock := &MockNucleiInterface{ctrl: ctrl}
mock.recorder = &MockNucleiInterfaceMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockNucleiInterface) EXPECT() *MockNucleiInterfaceMockRecorder {
return m.recorder
}
// RunScan mocks base method.
func (m *MockNucleiInterface) RunScan(addresses []string, template templates.Template) ([]*output.ResultEvent, []*output.InternalWrappedEvent, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "RunScan", addresses, template)
ret0, _ := ret[0].([]*output.ResultEvent)
ret1, _ := ret[1].([]*output.InternalWrappedEvent)
ret2, _ := ret[2].(error)
return ret0, ret1, ret2
}
// RunScan indicates an expected call of RunScan.
func (mr *MockNucleiInterfaceMockRecorder) RunScan(addresses, template interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RunScan", reflect.TypeOf((*MockNucleiInterface)(nil).RunScan), addresses, template)
}