golangci-lint/test/testdata/path_except_test.go
2023-05-31 17:25:59 +02:00

15 lines
341 B
Go

//golangcitest:args -Eforbidigo
//golangcitest:config_path testdata/configs/path-except.yml
package testdata
import (
"fmt"
"testing"
"time"
)
func TestForbidigo(t *testing.T) {
fmt.Printf("too noisy!!!") // want "use of `fmt\\.Printf` forbidden by pattern `fmt\\\\.Print\\.\\*`"
time.Sleep(time.Nanosecond) // want "no sleeping!"
}