github.com/azazeal/revive@v1.0.9/test/max-public-structs_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 TestMaxPublicStructs(t *testing.T) {
    11  	testRule(t, "max-public-structs", &rule.MaxPublicStructsRule{}, &lint.RuleConfig{
    12  		Arguments: []interface{}{int64(1)},
    13  	})
    14  }