test coverage
This commit is contained in:
parent
8c4ccc3bb6
commit
dc3663850f
3 changed files with 19 additions and 2 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue