blob: fc234d6873decaba1d8db9af6fab2da7b2d53c20 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package util
import "testing"
func TestInit(t *testing.T) {
// init() is called automatically because of the package import
// We just want to verify it doesn't panic and does something reasonable
}
|