-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalyzer_test.go
More file actions
40 lines (29 loc) · 815 Bytes
/
analyzer_test.go
File metadata and controls
40 lines (29 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright: (c) 2022, Mathias Weber (mweb@gmx.ch)
package floatcompare
import (
"os"
"testing"
"golang.org/x/tools/go/analysis/analysistest"
)
func TestAllComparison_Run(t *testing.T) {
a := NewAnalyzer()
wd, _ := os.Getwd()
analysistest.Run(t, wd+"/testdata", a, "all-comparison")
}
func TestEqualOnlyComparison_Run(t *testing.T) {
a := NewAnalyzer()
_ = a.Flags.Set("equalOnly", "true")
wd, _ := os.Getwd()
analysistest.Run(t, wd+"/testdata", a, "equal-only")
}
func TestSkipTestsComparison_Run(t *testing.T) {
a := NewAnalyzer()
_ = a.Flags.Set("skipTests", "true")
wd, _ := os.Getwd()
analysistest.Run(t, wd+"/testdata", a, "skipTests")
}
func TestWithTestsComparison_Run(t *testing.T) {
a := NewAnalyzer()
wd, _ := os.Getwd()
analysistest.Run(t, wd+"/testdata", a, "withTests")
}