(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func TestPow(t *testing.T) { |
| 60 | // if a, b := math.Pow(10.0, 33.0), 1.0e33; a != b { |
| 61 | // t.Errorf("%v != %v\n", a, b) |
| 62 | // } |
| 63 | if a, b := math.Pow10(33), 1.0e33; a != b { |
| 64 | t.Errorf("%v != %v\n", a, b) |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | func TestParseFloat(t *testing.T) { |
| 69 | if f, err := strconv.ParseFloat("inf", 64); err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…