Move lib's tests to lib_test

This suite of tests is only testing the exported functions
This commit is contained in:
Sean Chittenden 2016-03-29 19:51:37 -07:00
parent efe940e7c4
commit 88c42f4056
1 changed files with 5 additions and 3 deletions

View File

@ -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)
}