Files
go2tv/soapcalls/utils/random_test.go
2023-05-01 19:48:14 +03:00

13 lines
196 B
Go

package utils
import (
"testing"
)
func TestRandomString(t *testing.T) {
_, err := RandomString()
if err != nil {
t.Fatalf("RandomString: failed to test due to error %s", err.Error())
}
}