mirror of
https://github.com/mgechev/revive.git
synced 2025-06-06 23:16:16 +02:00
12 lines
171 B
Go
12 lines
171 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
func TestModifiesParam(t *testing.T) {
|
|
testRule(t, "modifies_param", &rule.ModifiesParamRule{})
|
|
}
|