OLD | NEW |
1 package data | 1 package data |
2 | 2 |
3 import ( | 3 import ( |
4 "reflect" | 4 "reflect" |
5 "testing" | 5 "testing" |
6 | 6 |
7 "go.skia.org/infra/fuzzer/go/common" | 7 "go.skia.org/infra/fuzzer/go/common" |
8 ) | 8 ) |
9 | 9 |
10 func TestSortedFuzzReports(t *testing.T) { | 10 func TestSortedFuzzReports(t *testing.T) { |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 FunctionFuzzReport{ | 168 FunctionFuzzReport{ |
169 FunctionName: "beta", Count: 2, LineNumbers: []L
ineFuzzReport{ | 169 FunctionName: "beta", Count: 2, LineNumbers: []L
ineFuzzReport{ |
170 LineFuzzReport{ | 170 LineFuzzReport{ |
171 LineNumber: 16, Count: 2, Detail
s: nil, | 171 LineNumber: 16, Count: 2, Detail
s: nil, |
172 }, | 172 }, |
173 }, | 173 }, |
174 }, | 174 }, |
175 }, | 175 }, |
176 }, | 176 }, |
177 } | 177 } |
OLD | NEW |