2018-10-31 15:32:23 +01:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestCallToGC test call-to-gc rule
|
|
|
|
func TestCallToGC(t *testing.T) {
|
2024-11-11 13:39:10 +02:00
|
|
|
testRule(t, "call_to_gc", &rule.CallToGCRule{})
|
2018-10-31 15:32:23 +01:00
|
|
|
}
|