fabric-umbrella: initial version
Change-Id: I3347bd7c49c6f2a53f074fab05cfb1f2164c2fab
diff --git a/test/main.go b/test/main.go
index 379d085..7dbd6b2 100644
--- a/test/main.go
+++ b/test/main.go
@@ -7,11 +7,13 @@
import (
"github.com/onosproject/helmit/pkg/registry"
"github.com/onosproject/helmit/pkg/test"
- "github.com/opencord/roc-helm-charts/aether-roc-umbrella/tests"
+ aether "github.com/opencord/roc-helm-charts/aether-roc-umbrella/tests"
+ fabric "github.com/opencord/roc-helm-charts/fabric-umbrella/tests"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
)
func main() {
- registry.RegisterTestSuite("aether-roc-umbrella", &tests.AetherRocUmbrellaSuite{})
+ registry.RegisterTestSuite("aether-roc-umbrella", &aether.AetherRocUmbrellaSuite{})
+ registry.RegisterTestSuite("fabric-umbrella", &fabric.FabricUmbrellaSuite{})
test.Main()
}