(t *testing.T)
| 66 | } |
| 67 | |
| 68 | func TestParseFloat(t *testing.T) { |
| 69 | if f, err := strconv.ParseFloat("inf", 64); err != nil { |
| 70 | t.Error("ParseFloat('inf', 64) == ", f, err) |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | func TestUnsigned(t *testing.T) { |
| 75 | n := -1.0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…