()
| 9 | ) |
| 10 | |
| 11 | func ExampleRound() { |
| 12 | rounded, _ := stats.Round(1.534424, 1) |
| 13 | fmt.Println(rounded) |
| 14 | // Output: 1.5 |
| 15 | } |
| 16 | |
| 17 | func TestRound(t *testing.T) { |
| 18 | for _, c := range []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…