2020-05-08 22:08:00 +02:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestIdenticalBranches(t *testing.T) {
|
2024-11-11 13:39:10 +02:00
|
|
|
testRule(t, "identical_branches", &rule.IdenticalBranchesRule{})
|
2020-05-08 22:08:00 +02:00
|
|
|
}
|