mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
db6c522a37
* Adds rule superfluous-else (an extension of indent-error-flow) * Fix superfluous-else rule struct namming. * Adds superfuous-else rule to the rules table * Adds confusing-naming rule * adds multifile test * [WIP] fix multiple file test * draft solution for detecting confusing-names through multiple files * [WIP] confusing-name multiple files * clean-up * draft working version * cleaner version + more informative messages * adds check on struct field names * fix config.go * clean master * new ADS rule: newerr * ADS-print working version * ads-print final version * ads-lost-err working version * confusing-namming: fix tests * removes ads-* rules * rule unreachable-code * unreachable-code refactored version * skip corner case of mandatory return
12 lines
177 B
Go
12 lines
177 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
func TestUnreachableCode(t *testing.T) {
|
|
testRule(t, "unreachable-code", &rule.UnreachableCodeRule{})
|
|
}
|