Merge branch 'master' into TestVendoredBuildConstraints
This commit is contained in:
commit
2647bdb8ea
@ -3,12 +3,13 @@ language: go
|
||||
sudo: false
|
||||
|
||||
go:
|
||||
- 1.7.x
|
||||
- 1.8.x
|
||||
- 1.9.x
|
||||
- 1.10.x
|
||||
- 1.11.x
|
||||
- tip
|
||||
|
||||
before_install:
|
||||
- go get github.com/golang/lint/golint
|
||||
- go get golang.org/x/lint/golint
|
||||
|
||||
before_script:
|
||||
- go vet ./...
|
||||
|
@ -20,15 +20,15 @@ var (
|
||||
// // make and configure a mocked PersonStore
|
||||
// mockedPersonStore := &PersonStoreMock{
|
||||
// CreateFunc: func(ctx context.Context, person *Person, confirm bool) error {
|
||||
// panic("TODO: mock out the Create method")
|
||||
// panic("mock out the Create method")
|
||||
// },
|
||||
// GetFunc: func(ctx context.Context, id string) (*Person, error) {
|
||||
// panic("TODO: mock out the Get method")
|
||||
// panic("mock out the Get method")
|
||||
// },
|
||||
// }
|
||||
//
|
||||
// // TODO: use mockedPersonStore in code that requires PersonStore
|
||||
// // and then make assertions.
|
||||
// // use mockedPersonStore in code that requires PersonStore
|
||||
// // and then make assertions.
|
||||
//
|
||||
// }
|
||||
type PersonStoreMock struct {
|
||||
|
@ -20,18 +20,18 @@ var (
|
||||
// // make and configure a mocked MyInterface
|
||||
// mockedMyInterface := &MyInterfaceMock{
|
||||
// OneFunc: func() bool {
|
||||
// panic("TODO: mock out the One method")
|
||||
// panic("mock out the One method")
|
||||
// },
|
||||
// ThreeFunc: func() string {
|
||||
// panic("TODO: mock out the Three method")
|
||||
// panic("mock out the Three method")
|
||||
// },
|
||||
// TwoFunc: func() int {
|
||||
// panic("TODO: mock out the Two method")
|
||||
// panic("mock out the Two method")
|
||||
// },
|
||||
// }
|
||||
//
|
||||
// // TODO: use mockedMyInterface in code that requires MyInterface
|
||||
// // and then make assertions.
|
||||
// // use mockedMyInterface in code that requires MyInterface
|
||||
// // and then make assertions.
|
||||
//
|
||||
// }
|
||||
type MyInterfaceMock struct {
|
||||
|
@ -29,12 +29,12 @@ var (
|
||||
// // make and configure a mocked {{.InterfaceName}}
|
||||
// mocked{{.InterfaceName}} := &{{.InterfaceName}}Mock{ {{ range .Methods }}
|
||||
// {{.Name}}Func: func({{ .Arglist }}) {{.ReturnArglist}} {
|
||||
// panic("TODO: mock out the {{.Name}} method")
|
||||
// panic("mock out the {{.Name}} method")
|
||||
// },{{- end }}
|
||||
// }
|
||||
//
|
||||
// // TODO: use mocked{{.InterfaceName}} in code that requires {{.InterfaceName}}
|
||||
// // and then make assertions.
|
||||
// // use mocked{{.InterfaceName}} in code that requires {{.InterfaceName}}
|
||||
// // and then make assertions.
|
||||
//
|
||||
// }
|
||||
type {{.InterfaceName}}Mock struct {
|
||||
|
@ -19,12 +19,12 @@ var (
|
||||
// // make and configure a mocked Service
|
||||
// mockedService := &ServiceMock{
|
||||
// UserFunc: func(ID string) (dotimport.User, error) {
|
||||
// panic("TODO: mock out the User method")
|
||||
// panic("mock out the User method")
|
||||
// },
|
||||
// }
|
||||
//
|
||||
// // TODO: use mockedService in code that requires Service
|
||||
// // and then make assertions.
|
||||
// // use mockedService in code that requires Service
|
||||
// // and then make assertions.
|
||||
//
|
||||
// }
|
||||
type ServiceMock struct {
|
||||
|
@ -19,12 +19,12 @@ var (
|
||||
// // make and configure a mocked Service
|
||||
// mockedService := &ServiceMock{
|
||||
// DoSomethingFunc: func(in1 somerepo.SomeType) error {
|
||||
// panic("TODO: mock out the DoSomething method")
|
||||
// panic("mock out the DoSomething method")
|
||||
// },
|
||||
// }
|
||||
//
|
||||
// // TODO: use mockedService in code that requires Service
|
||||
// // and then make assertions.
|
||||
// // use mockedService in code that requires Service
|
||||
// // and then make assertions.
|
||||
//
|
||||
// }
|
||||
type ServiceMock struct {
|
||||
|
Loading…
Reference in New Issue
Block a user