mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
6228b3cd9f
* static analyzer with tests * Merge branch 'origin-master' into identical-expression-comparison-analyzer * resolve analyzer errors * Merge branch 'origin-master' into identical-expression-comparison-analyzer * change excluded file in nogo_config * remove tests from bazel file * exclude test file explicitly * extracted common code to helper file * Revert "extracted common code to helper file" This reverts commit e9ccea73604c920451975214d0305e6d16943b3c. * Merge refs/heads/master into identical-expression-comparison-analyzer * Merge refs/heads/master into identical-expression-comparison-analyzer
12 lines
184 B
Go
12 lines
184 B
Go
package comparesame
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"golang.org/x/tools/go/analysis/analysistest"
|
|
)
|
|
|
|
func TestAnalyzer(t *testing.T) {
|
|
analysistest.Run(t, analysistest.TestData(), Analyzer)
|
|
}
|