()
| 141 | } |
| 142 | |
| 143 | func fakeSugarFields() []interface{} { |
| 144 | return []interface{}{ |
| 145 | "int", _tenInts[0], |
| 146 | "ints", _tenInts, |
| 147 | "string", _tenStrings[0], |
| 148 | "strings", _tenStrings, |
| 149 | "time", _tenTimes[0], |
| 150 | "times", _tenTimes, |
| 151 | "user1", _oneUser, |
| 152 | "user2", _oneUser, |
| 153 | "users", _tenUsers, |
| 154 | "error", errExample, |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | func fakeFmtArgs() []interface{} { |
| 159 | // Need to keep this a function instead of a package-global var so that we |
no outgoing calls
no test coverage detected