Remove TODO comments from template.go

This commit is contained in:
pdrum 2018-08-09 01:41:52 +04:30
parent fbe042a544
commit 764e1ef8e5

View File

@ -29,12 +29,12 @@ var (
// // make and configure a mocked {{.InterfaceName}} // // make and configure a mocked {{.InterfaceName}}
// mocked{{.InterfaceName}} := &{{.InterfaceName}}Mock{ {{ range .Methods }} // mocked{{.InterfaceName}} := &{{.InterfaceName}}Mock{ {{ range .Methods }}
// {{.Name}}Func: func({{ .Arglist }}) {{.ReturnArglist}} { // {{.Name}}Func: func({{ .Arglist }}) {{.ReturnArglist}} {
// panic("TODO: mock out the {{.Name}} method") // panic("mock out the {{.Name}} method")
// },{{- end }} // },{{- end }}
// } // }
// //
// // TODO: use mocked{{.InterfaceName}} in code that requires {{.InterfaceName}} // // use mocked{{.InterfaceName}} in code that requires {{.InterfaceName}}
// // and then make assertions. // // and then make assertions.
// //
// } // }
type {{.InterfaceName}}Mock struct { type {{.InterfaceName}}Mock struct {