mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
5d04216294
Co-authored-by: SalvadorC <salvadorcavadini+github@gmail.com>
14 lines
331 B
Go
14 lines
331 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
// Test that left and right side of Binary operators (only AND, OR) are swapable
|
|
func TestOptimizeOperandsOrder(t *testing.T) {
|
|
testRule(t, "optimize-operands-order", &rule.OptimizeOperandsOrderRule{}, &lint.RuleConfig{})
|
|
}
|