1
0
mirror of https://github.com/mgechev/revive.git synced 2025-06-02 22:57:22 +02:00
revive/test/bool_literal_in_expr_test.go

12 lines
173 B
Go
Raw Normal View History

package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
func TestBoolLiteral(t *testing.T) {
testRule(t, "bool_literal_in_expr", &rule.BoolLiteralRule{})
}