(ctx context.Context, value string)
| 17 | type Utils struct{} |
| 18 | |
| 19 | func (Utils) Uppercase(ctx context.Context, value string) string { |
| 20 | return strings.ToUpper(value) |
| 21 | } |
| 22 | |
| 23 | func TestBasic(t *testing.T) { |
| 24 | fac, err := NewBasicFactory(t.Context(), SlogLogger{}, Utils{}) |
nothing calls this directly
no outgoing calls
no test coverage detected