mirror of
https://github.com/mgechev/revive.git
synced 2025-12-19 23:42:11 +02:00
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{})
|
||
|
|
}
|