No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
8060037
... +0 ...
b73cd13
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
331 | 331 | return v.Str() |
|
332 | 332 | } |
|
333 | 333 | ||
334 | - | // Deprecated: [0.61.0] Use GetInt instead. |
|
334 | + | // Deprecated: [0.61.0] Use Int instead. |
|
335 | 335 | func (v Value) IntVal() int64 { |
|
336 | 336 | return v.Int() |
|
337 | 337 | } |
|
338 | 338 | ||
339 | - | // Deprecated: [0.61.0] Use GetDouble instead. |
|
339 | + | // Deprecated: [0.61.0] Use Double instead. |
|
340 | 340 | func (v Value) DoubleVal() float64 { |
|
341 | 341 | return v.Double() |
|
342 | 342 | } |
|
343 | 343 | ||
344 | - | // Deprecated: [0.61.0] Use GetBool instead. |
|
344 | + | // Deprecated: [0.61.0] Use Bool instead. |
|
345 | 345 | func (v Value) BoolVal() bool { |
|
346 | 346 | return v.Bool() |
|
347 | 347 | } |
|
348 | 348 | ||
349 | - | // Deprecated: [0.61.0] Use GetMap instead. |
|
349 | + | // Deprecated: [0.61.0] Use Map instead. |
|
350 | 350 | func (v Value) MapVal() Map { |
|
351 | 351 | return v.Map() |
|
352 | 352 | } |
|
353 | 353 | ||
354 | - | // Deprecated: [0.61.0] Use GetSlice instead. |
|
354 | + | // Deprecated: [0.61.0] Use Slice instead. |
|
355 | 355 | func (v Value) SliceVal() Slice { |
|
356 | 356 | return v.Slice() |
|
357 | 357 | } |
|
358 | 358 | ||
359 | - | // Deprecated: [0.61.0] Use GetBytes instead. |
|
359 | + | // Deprecated: [0.61.0] Use Bytes instead. |
|
360 | 360 | func (v Value) BytesVal() ByteSlice { |
|
361 | 361 | return v.Bytes() |
|
362 | 362 | } |
b73cd13
8060037