github.com/azazeal/revive@v1.0.9/test/range-val-in-closure_test.go (about)

     1  package test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/azazeal/revive/lint"
     7  	"github.com/azazeal/revive/rule"
     8  )
     9  
    10  func TestRangeValInClosure(t *testing.T) {
    11  	testRule(t, "range-val-in-closure", &rule.RangeValInClosureRule{}, &lint.RuleConfig{})
    12  }