We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1db62a6 commit 92f4426Copy full SHA for 92f4426
1 file changed
pkg/ddc/base/portallocator/portallocator_suite_test.go
@@ -7,6 +7,14 @@ import (
7
. "github.com/onsi/gomega"
8
)
9
10
+// TestPortallocator runs the port allocator test suite
11
+// Description:
12
+// This function serves as the entry point for the Ginkgo test framework to execute all test cases
13
+// related to the port allocator. It registers the Ginkgo fail handler via RegisterFailHandler
14
+// and starts the test suite using RunSpecs.
15
+// Parameters:
16
+// t *testing.T - The standard Go testing object used to control test execution flow
17
+// Returns: no return value
18
func TestPortallocator(t *testing.T) {
19
RegisterFailHandler(Fail)
20
RunSpecs(t, "Portallocator Suite")
0 commit comments