Documentation ¶
Index ¶
- Variables
- func EDEIEmbedded()
- func EDEIWrapped(something string) (io.Writer, error)
- func EDEIWrappedVariadric(something ...string) error
- func EDESMethodPtr()
- func EDESMethodVal()
- func EDESPMethodPtr()
- func EDESPMethodVal()
- func EDUIEmbedded()
- func EDUIWrapped(something string) (io.Writer, error)
- func EDUIWrappedVariadric(something ...string) error
- func EDUSMethodPtr()
- func EDUSMethodVal()
- func EDUSPMethodPtr()
- func EDUSPMethodVal()
- func UDEIEmbedded()
- func UDEIWrapped(something string) (io.Writer, error)
- func UDEIWrappedVariadric(something ...string) error
- func UDESMethodPtr()
- func UDESMethodVal()
- func UDESPMethodPtr()
- func UDESPMethodVal()
- func UDUIEmbedded()
- func UDUIWrapped(something string) (io.Writer, error)
- func UDUIWrappedVariadric(something ...string) error
- func UDUSMethodPtr()
- func UDUSMethodVal()
- func UDUSPMethodPtr()
- func UDUSPMethodVal()
- type ExportedInterface
- type ExportedStruct
Constants ¶
This section is empty.
Variables ¶
var ExportedDefaultExportedStruct = ExportedStruct{}
ExportedDefaultExportedStruct to be generated
var ExportedDefaultExportedStructPtr = &ExportedStruct{}
ExportedDefaultExportedStructPtr to be generated
var ExportedDefaultUnexportedInterface unexportedInterface = impl{}
ExportedDefaultunexportedInterface to be generated
var ExportedDefaultUnexportedStruct = unexportedStruct{}
ExportedDefaultUnexportedStruct to be generated
var ExportedDefaultUnexportedStructPtr = &unexportedStruct{}
ExportedDefaultUnexportedStructPtr to be generated
Functions ¶
func EDEIEmbedded ¶
func EDEIEmbedded()
EDEIEmbedded is a wrapper around ExportedDefaultExportedInterface.Embedded
func EDEIWrapped ¶
EDEIWrapped is a wrapper around ExportedDefaultExportedInterface.Wrapped
func EDEIWrappedVariadric ¶
EDEIWrappedVariadric is a wrapper around ExportedDefaultExportedInterface.WrappedVariadric
func EDESMethodPtr ¶
func EDESMethodPtr()
EDESMethodPtr is a wrapper around ExportedDefaultExportedStruct.MethodPtr
func EDESMethodVal ¶
func EDESMethodVal()
EDESMethodVal is a wrapper around ExportedDefaultExportedStruct.MethodVal
func EDESPMethodPtr ¶
func EDESPMethodPtr()
EDESPMethodPtr is a wrapper around ExportedDefaultExportedStructPtr.MethodPtr
func EDESPMethodVal ¶
func EDESPMethodVal()
EDESPMethodVal is a wrapper around ExportedDefaultExportedStructPtr.MethodVal
func EDUIEmbedded ¶
func EDUIEmbedded()
EDUIEmbedded is a wrapper around ExportedDefaultUnexportedInterface.Embedded
func EDUIWrapped ¶
EDUIWrapped is a wrapper around ExportedDefaultUnexportedInterface.Wrapped
func EDUIWrappedVariadric ¶
EDUIWrappedVariadric is a wrapper around ExportedDefaultUnexportedInterface.WrappedVariadric
func EDUSMethodPtr ¶
func EDUSMethodPtr()
EDUSMethodPtr is a wrapper around ExportedDefaultUnexportedStruct.MethodPtr
func EDUSMethodVal ¶
func EDUSMethodVal()
EDUSMethodVal is a wrapper around ExportedDefaultUnexportedStruct.MethodVal
func EDUSPMethodPtr ¶
func EDUSPMethodPtr()
EDUSPMethodPtr is a wrapper around ExportedDefaultUnexportedStructPtr.MethodPtr
func EDUSPMethodVal ¶
func EDUSPMethodVal()
EDUSPMethodVal is a wrapper around ExportedDefaultUnexportedStructPtr.MethodVal
func UDEIEmbedded ¶
func UDEIEmbedded()
UDEIEmbedded is a wrapper around unexportedDefaultExportedInterface.Embedded
func UDEIWrapped ¶
UDEIWrapped is a wrapper around unexportedDefaultExportedInterface.Wrapped
func UDEIWrappedVariadric ¶
UDEIWrappedVariadric is a wrapper around unexportedDefaultExportedInterface.WrappedVariadric
func UDESMethodPtr ¶
func UDESMethodPtr()
UDESMethodPtr is a wrapper around unexportedDefaultExportedStruct.MethodPtr
func UDESMethodVal ¶
func UDESMethodVal()
UDESMethodVal is a wrapper around unexportedDefaultExportedStruct.MethodVal
func UDESPMethodPtr ¶
func UDESPMethodPtr()
UDESPMethodPtr is a wrapper around unexportedDefaultExportedStructPtr.MethodPtr
func UDESPMethodVal ¶
func UDESPMethodVal()
UDESPMethodVal is a wrapper around unexportedDefaultExportedStructPtr.MethodVal
func UDUIEmbedded ¶
func UDUIEmbedded()
UDUIEmbedded is a wrapper around unexportedDefaultUnexportedInterface.Embedded
func UDUIWrapped ¶
UDUIWrapped is a wrapper around unexportedDefaultUnexportedInterface.Wrapped
func UDUIWrappedVariadric ¶
UDUIWrappedVariadric is a wrapper around unexportedDefaultUnexportedInterface.WrappedVariadric
func UDUSMethodPtr ¶
func UDUSMethodPtr()
UDUSMethodPtr is a wrapper around unexportedDefaultUnexportedStruct.MethodPtr
func UDUSMethodVal ¶
func UDUSMethodVal()
UDUSMethodVal is a wrapper around unexportedDefaultUnexportedStruct.MethodVal
func UDUSPMethodPtr ¶
func UDUSPMethodPtr()
UDUSPMethodPtr is a wrapper around unexportedDefaultUnexportedStructPtr.MethodPtr
func UDUSPMethodVal ¶
func UDUSPMethodVal()
UDUSPMethodVal is a wrapper around unexportedDefaultUnexportedStructPtr.MethodVal
Types ¶
type ExportedInterface ¶
type ExportedInterface interface { // Wrapped documentation goes here Wrapped(something string) (io.Writer, error) WrappedVariadric(something ...string) error // contains filtered or unexported methods }
ExportedInterface for tests
var ExportedDefaultExportedInterface ExportedInterface = impl{}
ExportedDefaultExportedInterface to be generated
type ExportedStruct ¶
type ExportedStruct struct {
// contains filtered or unexported fields
}
ExportedStruct is a random test struct
func (*ExportedStruct) EmbeddedPtr ¶
func (_ *ExportedStruct) EmbeddedPtr()
func (ExportedStruct) EmbeddedVal ¶
func (_ ExportedStruct) EmbeddedVal()
Source Files ¶
- embedded.go
- exported_default_exported_interface_funcs.go
- exported_default_exported_struct_funcs.go
- exported_default_exported_struct_ptr_funcs.go
- exported_default_unexported_interface_funcs.go
- exported_default_unexported_struct_funcs.go
- exported_default_unexported_struct_ptr_funcs.go
- exported_interface.go
- exported_struct.go
- unexported_default_exported_interface_funcs.go
- unexported_default_exported_struct_funcs.go
- unexported_default_exported_struct_ptr_funcs.go
- unexported_default_unexported_interface_funcs.go
- unexported_default_unexported_struct_funcs.go
- unexported_default_unexported_struct_ptr_funcs.go
- unexported_interface.go
- unexported_struct.go