setting up the go envrionment

Change-Id: Icf18b1def15ff9f45452010fdede034e42315a43
diff --git a/test/main.go b/test/main.go
new file mode 100644
index 0000000..4c0e3a8
--- /dev/null
+++ b/test/main.go
@@ -0,0 +1,17 @@
+// SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
+//
+// SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
+
+package main
+
+import (
+	"github.com/onosproject/helmit/pkg/registry"
+	"github.com/onosproject/helmit/pkg/test"
+	"github.com/opencord/roc-helm-charts/aether-roc-umbrella/tests"
+	_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
+)
+
+func main() {
+	registry.RegisterTestSuite("aether-roc-umbrella", &tests.AetherRocUmbrellaSuite{})
+	test.Main()
+}