mirror of https://github.com/status-im/consul.git
Move lib's tests to lib_test
This suite of tests is only testing the exported functions
This commit is contained in:
parent
efe940e7c4
commit
88c42f4056
|
@ -1,14 +1,16 @@
|
|||
package lib
|
||||
package lib_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/hashicorp/consul/lib"
|
||||
)
|
||||
|
||||
func TestMathMaxInt(t *testing.T) {
|
||||
tests := [][3]int{{1, 2, 2}, {-1, 1, 1}, {2, 0, 2}}
|
||||
for i, _ := range tests {
|
||||
expected := tests[i][2]
|
||||
actual := MaxInt(tests[i][0], tests[i][1])
|
||||
actual := lib.MaxInt(tests[i][0], tests[i][1])
|
||||
if expected != actual {
|
||||
t.Fatalf("in iteration %d expected %d, got %d", i, expected, actual)
|
||||
}
|
||||
|
@ -19,7 +21,7 @@ func TestMathMinInt(t *testing.T) {
|
|||
tests := [][3]int{{1, 2, 1}, {-1, 1, -1}, {2, 0, 0}}
|
||||
for i, _ := range tests {
|
||||
expected := tests[i][2]
|
||||
actual := MinInt(tests[i][0], tests[i][1])
|
||||
actual := lib.MinInt(tests[i][0], tests[i][1])
|
||||
if expected != actual {
|
||||
t.Fatalf("in iteration %d expected %d, got %d", i, expected, actual)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue