Skip to content

Commit 8bc5adb

Browse files
Fix GitHub check annotations (#221)
* Fix GitHub check annotations * Update types.go
1 parent 3dc5f3d commit 8bc5adb

File tree

27 files changed

+73
-2
lines changed

27 files changed

+73
-2
lines changed

internal/template/template_data.go

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ func (m MethodData) ReturnArgNameList() string {
9090
return strings.Join(params, ", ")
9191
}
9292

93+
// TypeParamData extends ParamData with a constraint.
9394
type TypeParamData struct {
9495
ParamData
9596
Constraint types.Type

pkg/moq/testpackages/anonimport/iface.go

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"context"
55
)
66

7+
// Example is a test interface.
78
type Example interface {
89
Ctx(ctx context.Context)
910
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package anonimport
22

33
import (
4-
_ "context"
4+
_ "context" // import for side effects
55
)
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package blankid
22

3+
// Swallower is a test interface.
34
type Swallower interface {
45
Swallow(_ string)
56
}

pkg/moq/testpackages/genericreturn/genericreturn.go

+2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ package genericreturn
22

33
import "github.com/matryer/moq/pkg/moq/testpackages/genericreturn/otherpackage"
44

5+
// GenericBar is a test type.
56
type GenericBar[T any] struct {
67
Bar T
78
}
89

10+
// IFooBar is a test interface.
911
type IFooBar interface {
1012
Foobar() GenericBar[otherpackage.Foo]
1113
}

pkg/moq/testpackages/genericreturn/otherpackage/otherpackage.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package otherpackage
22

3+
// Foo is a test struct.
34
type Foo struct {
45
A int
56
B string

pkg/moq/testpackages/generics/generics.go

+6
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,32 @@ import (
55
"fmt"
66
)
77

8+
// GenericStore1 is a test interface.
89
type GenericStore1[T Key1, S any] interface {
910
Get(ctx context.Context, id T) (S, error)
1011
Create(ctx context.Context, id T, value S) error
1112
}
1213

14+
// GenericStore2 is a test interface.
1315
type GenericStore2[T Key2, S any] interface {
1416
Get(ctx context.Context, id T) (S, error)
1517
Create(ctx context.Context, id T, value S) error
1618
}
1719

20+
// AliasStore is a test interface.
1821
type AliasStore GenericStore1[KeyImpl, bool]
1922

23+
// Key1 is a test interface.
2024
type Key1 interface {
2125
fmt.Stringer
2226
}
2327

28+
// Key2 is a test interface.
2429
type Key2 interface {
2530
~[]byte | string
2631
}
2732

33+
// KeyImpl is a test type.
2834
type KeyImpl []byte
2935

3036
func (x KeyImpl) String() string {

pkg/moq/testpackages/genparamname/iface.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@ import (
1212
)
1313

1414
type (
15-
Go func()
15+
// Go is a test function.
16+
Go func()
17+
1618
myType struct{}
1719
)
1820

21+
// Interface is a test interface.
1922
type Interface interface {
2023
Method(
2124
*myType,

pkg/moq/testpackages/importalias/middleman.go

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
tgtclient "github.com/matryer/moq/pkg/moq/testpackages/importalias/target/client"
66
)
77

8+
// MiddleMan is a test interface.
89
type MiddleMan interface {
910
Connect(src srcclient.Client, tgt tgtclient.Client)
1011
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
package client
22

3+
// Client is a test struct.
34
type Client struct{}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
package client
22

3+
// Client is a test struct.
34
type Client struct{}

pkg/moq/testpackages/paramconflict/iface.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package paramconflict
22

33
import "time"
44

5+
// Interface is a test interface.
56
type Interface interface {
67
Method(string, bool, string, bool, int, int32, int64, float32, float64, time.Time, time.Time)
78
}

pkg/moq/testpackages/shadow/http/thing.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package http
22

33
import "net/http"
44

5+
// Thing is a test interface.
56
type Thing interface {
67
Blah(w http.ResponseWriter, r *http.Request)
78
}

pkg/moq/testpackages/shadowtypes/shadowtypes.go

+20
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,52 @@ import (
44
"github.com/matryer/moq/pkg/moq/testpackages/shadowtypes/types"
55
)
66

7+
// ShadowTypes is a test interface.
78
type ShadowTypes interface {
9+
// ShadowString is a test method.
810
ShadowString(string, types.String)
911

12+
// ShadowInt is a test method.
1013
ShadowInt(int, types.Int)
14+
// ShadowInt8 is a test method.
1115
ShadowInt8(int8, types.Int8)
16+
// ShadowInt16 is a test method.
1217
ShadowInt16(int16, types.Int16)
18+
// ShadowInt32 is a test method.
1319
ShadowInt32(int32, types.Int32)
20+
// ShadowInt64 is a test method.
1421
ShadowInt64(int64, types.Int64)
1522

23+
// ShadowUint is a test method.
1624
ShadowUint(uint, types.Uint)
25+
// ShadowUint8 is a test method.
1726
ShadowUint8(uint8, types.Uint8)
27+
// ShadowUint16 is a test method.
1828
ShadowUint16(uint16, types.Uint16)
29+
// ShadowUint32 is a test method.
1930
ShadowUint32(uint32, types.Uint32)
31+
// ShadowUint64 is a test method.
2032
ShadowUint64(uint64, types.Uint64)
2133

34+
// ShadowFloat32 is a test method.
2235
ShadowFloat32(float32, types.Float32)
36+
// ShadowFloat64 is a test method.
2337
ShadowFloat64(float64, types.Float64)
2438

39+
// ShadowByte is a test method.
2540
ShadowByte(byte, types.Byte)
2641

42+
// ShadowRune is a test method.
2743
ShadowRune(rune, types.Rune)
2844

45+
// ShadowBool is a test method.
2946
ShadowBool(bool, types.Bool)
3047

48+
// ShadowComplex64 is a test method.
3149
ShadowComplex64(complex64, types.Complex64)
50+
// ShadowComplex128 is a test method.
3251
ShadowComplex128(complex128, types.Complex128)
3352

53+
// ShadowUintptr is a test method.
3454
ShadowUintptr(uintptr, types.Uintptr)
3555
}
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,48 @@
11
package types
22

3+
// String is a test type.
34
type String string
45

6+
// Int is a test type.
57
type Int int
8+
// Int8 is a test type.
69
type Int8 int8
10+
// Int16 is a test type.
711
type Int16 int16
12+
// Int32 is a test type.
813
type Int32 int32
14+
// Int64 is a test type.
915
type Int64 int64
1016

17+
// Uint is a test type.
1118
type Uint uint
19+
// Uint8 is a test type.
1220
type Uint8 uint
21+
// Uint16 is a test type.
1322
type Uint16 uint
23+
// Uint32 is a test type.
1424
type Uint32 uint
25+
// Uint64 is a test type.
1526
type Uint64 uint
1627

28+
// Float32 is a test type.
1729
type Float32 float32
30+
// Float64 is a test type.
1831
type Float64 float64
1932

33+
// Byte is a test type.
2034
type Byte byte
2135

36+
// Rune is a test type.
2237
type Rune rune
2338

39+
// Bool is a test type.
2440
type Bool bool
2541

42+
// Complex64 is a test type.
2643
type Complex64 complex64
44+
// Complex128 is a test type.
2745
type Complex128 complex128
2846

47+
// Uintptr is a test type.
2948
type Uintptr uintptr
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
package sync
22

3+
// Thing is a test type.
34
type Thing string

pkg/moq/testpackages/syncimport/syncer.go

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"github.com/matryer/moq/pkg/moq/testpackages/syncimport/sync"
77
)
88

9+
// Syncer is a test interface.
910
type Syncer interface {
1011
Blah(s sync.Thing, wg *stdsync.WaitGroup)
1112
}

pkg/moq/testpackages/transientimport/base/type.go

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
two "github.com/matryer/moq/pkg/moq/testpackages/transientimport/two/app/v1"
99
)
1010

11+
// Transient is a test interface.
1112
type Transient interface {
1213
DoSomething(onev1.Zero, one.One, two.Two, three.Three, four.Four)
1314
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
package v1
22

3+
// Four is a test type.
34
type Four string
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
package v1
22

3+
// One is a test type.
34
type One string
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
package onev1
22

3+
// Zero is a test type.
34
type Zero string
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
package v1
22

3+
// Three is a test type.
34
type Three string

pkg/moq/testpackages/transientimport/transient.go

+1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ import (
44
"github.com/matryer/moq/pkg/moq/testpackages/transientimport/base"
55
)
66

7+
// Transient is a test interface.
78
type Transient = base.Transient
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
package v1
22

3+
// Two is a test type.
34
type Two string
+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package variadic
22

3+
// Echoer is an interface.
34
type Echoer interface {
45
Echo(ss ...string) []string
56
}

pkg/moq/testpackages/vendor/github.com/sudo-suhas/moq-test-pkgs/somerepo/code.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/moq/testpackages/vendoring/vendor/github.com/sudo-suhas/moq-test-pkgs/somerepo/code.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)