mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
0404d66548
* simpler (new rule) * simpler: checks unitary switches * unnecessary-stmt (new rule)
13 lines
206 B
Go
13 lines
206 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
// TestUnnecessaryStmt rule.
|
|
func TestUnnecessaryStmt(t *testing.T) {
|
|
testRule(t, "unnecessary-stmt", &rule.UnnecessaryStmtRule{})
|
|
}
|