()
| 125 | } |
| 126 | |
| 127 | func fakeFields() []zap.Field { |
| 128 | return []zap.Field{ |
| 129 | zap.Int("int", _tenInts[0]), |
| 130 | zap.Ints("ints", _tenInts), |
| 131 | zap.String("string", _tenStrings[0]), |
| 132 | zap.Strings("strings", _tenStrings), |
| 133 | zap.Time("time", _tenTimes[0]), |
| 134 | zap.Times("times", _tenTimes), |
| 135 | zap.Object("user1", _oneUser), |
| 136 | zap.Object("user2", _oneUser), |
| 137 | zap.Object("user3", nil), |
| 138 | zap.Array("users", _tenUsers), |
| 139 | zap.Error(errExample), |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | func fakeSugarFields() []interface{} { |
| 144 | return []interface{}{ |
no test coverage detected