From 47fad35486719409d051ef7db82cda2c69ab8b04 Mon Sep 17 00:00:00 2001 From: zcy200106 Date: Sun, 14 Jun 2026 09:01:19 +0000 Subject: [PATCH] Add comments to TestOperations in pkg/ddc/efc/operations/operations_suite_test.go. Signed-off-by: zcy200106 --- pkg/ddc/efc/operations/operations_suite_test.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkg/ddc/efc/operations/operations_suite_test.go b/pkg/ddc/efc/operations/operations_suite_test.go index 70a0d5214ac..b393088eeb0 100644 --- a/pkg/ddc/efc/operations/operations_suite_test.go +++ b/pkg/ddc/efc/operations/operations_suite_test.go @@ -7,6 +7,13 @@ import ( . "github.com/onsi/gomega" ) +// TestOperations is the entry point for the Ginkgo test suite of the operations package. +// It registers the Gomega fail handler and runs all Ginkgo specs defined in the package +// under the suite name "Operations Suite". +// This function is invoked by the Go test runner via `go test`. +// +// Parameters: +// - t (*testing.T): The standard Go testing object passed by the test runner. func TestOperations(t *testing.T) { RegisterFailHandler(Fail) RunSpecs(t, "Operations Suite")