(n int)
| 109 | } |
| 110 | |
| 111 | func getBenchRows(n int) []templates.BenchRow { |
| 112 | rows := make([]templates.BenchRow, n) |
| 113 | for i := 0; i < n; i++ { |
| 114 | rows[i] = templates.BenchRow{ |
| 115 | ID: i, |
| 116 | Message: fmt.Sprintf("message %d", i), |
| 117 | Print: ((i & 1) == 0), |
| 118 | } |
| 119 | } |
| 120 | return rows |
| 121 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…