test coverage

This commit is contained in:
Will Charczuk 2017-04-17 17:05:55 -07:00
parent 8c4ccc3bb6
commit dc3663850f
3 changed files with 19 additions and 2 deletions

View file

@ -2,6 +2,7 @@ package matrix
import (
"math"
"strconv"
)
func minInt(values ...int) int {
@ -25,3 +26,7 @@ func maxInt(values ...int) int {
}
return max
}
func f64s(v float64) string {
return strconv.FormatFloat(v, 'f', -1, 64)
}