1
0
mirror of https://github.com/mgechev/revive.git synced 2025-02-01 13:07:44 +02:00
revive/test/call_to_gc_test.go
2024-11-11 19:31:18 +01:00

13 lines
194 B
Go

package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
// TestCallToGC test call-to-gc rule
func TestCallToGC(t *testing.T) {
testRule(t, "call_to_gc", &rule.CallToGCRule{})
}