Convert trie tests to gocheck

This commit is contained in:
Taylor Gerring
2014-11-12 21:43:25 +01:00
parent 1d866b5e57
commit 00878e5b6e
2 changed files with 119 additions and 164 deletions

8
trie/main_test.go Normal file
View File

@@ -0,0 +1,8 @@
package trie
import (
checker "gopkg.in/check.v1"
"testing"
)
func Test(t *testing.T) { checker.TestingT(t) }