diff --git a/pkg/moq/testpackages/shadowtypes/types/types.go b/pkg/moq/testpackages/shadowtypes/types/types.go index 66c552e..5d59446 100644 --- a/pkg/moq/testpackages/shadowtypes/types/types.go +++ b/pkg/moq/testpackages/shadowtypes/types/types.go @@ -1,29 +1,48 @@ package types +// String is a test type. type String string +// Int is a test type. type Int int +// Int8 is a test type. type Int8 int8 +// Int16 is a test type. type Int16 int16 +// Int32 is a test type. type Int32 int32 +// Int64 is a test type. type Int64 int64 +// Uint is a test type. type Uint uint +// Uint8 is a test type. type Uint8 uint +// Uint16 is a test type. type Uint16 uint +// Uint32 is a test type. type Uint32 uint +// Uint64 is a test type. type Uint64 uint +// Float32 is a test type. type Float32 float32 +// Float64 is a test type. type Float64 float64 +// Byte is a test type. type Byte byte +// Rune is a test type. type Rune rune +// Bool is a test type. type Bool bool +// Complex64 is a test type. type Complex64 complex64 +// Complex128 is a test type. type Complex128 complex128 +// Uintptr is a test type. type Uintptr uintptr