github.com/songshiyun/revive@v1.1.5-0.20220323112655-f8433a19b3c5/test/duplicated-import_test.go (about)

     1  package test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/songshiyun/revive/rule"
     7  )
     8  
     9  func TestDuplicatedImports(t *testing.T) {
    10  	testRule(t, "duplicated-imports", &rule.DuplicatedImportsRule{})
    11  }