github.com/azazeal/revive@v1.0.9/test/line-length-limit_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 TestLineLengthLimit(t *testing.T) {
    11  	testRule(t, "line-length-limit", &rule.LineLengthLimitRule{}, &lint.RuleConfig{
    12  		Arguments: []interface{}{int64(100)},
    13  	})
    14  }