mirror of
https://github.com/mgechev/revive.git
synced 2025-11-23 22:04:49 +02:00
12 lines
187 B
Go
12 lines
187 B
Go
package test_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
func TestModifiesValRec(t *testing.T) {
|
|
testRule(t, "modifies_value_receiver", &rule.ModifiesValRecRule{})
|
|
}
|