We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02e6ae1 commit 6001f45Copy full SHA for 6001f45
2 files changed
_tests/tests_suite_test.go
@@ -3,6 +3,7 @@ package _tests_test
3
import (
4
"bytes"
5
"fmt"
6
+ "math/rand"
7
"os"
8
"os/exec"
9
"os/user"
@@ -16,6 +17,14 @@ import (
16
17
"testing"
18
)
19
20
+func init() {
21
+ rand.Seed(GinkgoConfig.RandomSeed)
22
+}
23
+
24
+func getRandAppName() string {
25
+ return fmt.Sprintf("apps-test-%d", rand.Int())
26
27
28
func TestTests(t *testing.T) {
29
RegisterFailHandler(Fail)
30
RunSpecs(t, "Tests Suite")
_tests/util_test.go
0 commit comments