mirror of
https://github.com/mgechev/revive.git
synced 2025-11-23 22:04:49 +02:00
14 lines
317 B
Go
14 lines
317 B
Go
|
|
package test
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
"github.com/mgechev/revive/lint"
|
||
|
|
"github.com/mgechev/revive/rule"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestUseWaitGroupGo(t *testing.T) {
|
||
|
|
testRule(t, "use_waitgroup_go", &rule.UseWaitGroupGoRule{}, &lint.RuleConfig{})
|
||
|
|
testRule(t, "go1.25/use_waitgroup_go", &rule.UseWaitGroupGoRule{}, &lint.RuleConfig{})
|
||
|
|
}
|