Documentation ¶
Index ¶
- type AutofillTestA
- type AutofillTestB
- type BuildFuncTestA
- type BuildFuncTestB
- type BuildFuncTestC
- type BuildStructTestA
- type BuildStructTestB
- type BuildStructTestC
- type CloseTest
- type DeclTypeTest
- type DiTest
- type InterfacesTestA
- type InterfacesTestB
- type RetrievalTest
- type ScopeTest
- type TypeBasedOnBasicType
- type TypeBasedOnSliceOfBasicType
- type UnsharedTest
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AutofillTestA ¶
type AutofillTestA struct {
Value string
}
AutofillTestA is a structure used in the tests.
type AutofillTestB ¶
type AutofillTestB struct {
Value *AutofillTestA
}
AutofillTestB is a structure used in the tests.
type BuildFuncTestA ¶
type BuildFuncTestA struct { P1 string P2 BuildFuncTestB P3 *BuildFuncTestC }
BuildFuncTestA is a structure used in the tests.
type BuildFuncTestB ¶
type BuildFuncTestB struct { P1 string P2 *BuildFuncTestC }
BuildFuncTestB is a structure used in the tests.
type BuildFuncTestC ¶
type BuildFuncTestC struct {
P1 string
}
BuildFuncTestC is a structure used in the tests.
type BuildStructTestA ¶
type BuildStructTestA struct { P1 string P2 *BuildStructTestB P3 *BuildStructTestC }
BuildStructTestA is a structure used in the tests.
type BuildStructTestB ¶
type BuildStructTestB struct { P1 string P2 *BuildStructTestC }
BuildStructTestB is a structure used in the tests.
type BuildStructTestC ¶
type BuildStructTestC struct {
P1 string
}
BuildStructTestC is a structure used in the tests.
type InterfacesTestA ¶ added in v4.0.1
type InterfacesTestA struct {
Value string
}
InterfacesTestA is a structure used in the tests.
func (InterfacesTestA) Test ¶ added in v4.0.1
func (ita InterfacesTestA) Test()
Test allows to implement InterfacesTestInterface.
type InterfacesTestB ¶ added in v4.0.1
type InterfacesTestB struct {
InterfacesTestInterface testinterfaces.InterfacesTestInterface
}
InterfacesTestB is a structure used in the tests.
type RetrievalTest ¶
type RetrievalTest struct {
CreatedAt int
}
RetrievalTest is a structure used in the tests.
func NewRetrievalTest ¶
func NewRetrievalTest() *RetrievalTest
NewRetrievalTest creates a new RetrievalTest.
type ScopeTest ¶
type ScopeTest struct {
CreatedAt int
}
ScopeTest is a structure used in the tests.
type TypeBasedOnBasicType ¶ added in v4.0.3
type TypeBasedOnBasicType int64
TypeBasedOnBasicType is a type used in the tests.
type TypeBasedOnSliceOfBasicType ¶ added in v4.0.3
type TypeBasedOnSliceOfBasicType []byte
TypeBasedOnSliceOfBasicType is a type used in the tests.
type UnsharedTest ¶ added in v4.1.0
type UnsharedTest struct {
}UnsharedTest is a structure used in the tests.
func NewUnsharedTest ¶ added in v4.1.0
func NewUnsharedTest() *UnsharedTest
NewUnsharedTest creates a new UnsharedTest.