blob: 7dbd6b282847e55664ed8f8f66eb45ab7c0d80bd [file] [log] [blame]
Sean Condonaf0eb3c2021-09-19 20:14:29 +01001// SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
2//
Sean Condon160ec1d2022-02-08 12:58:25 +00003// SPDX-License-Identifier: Apache-2.0
Sean Condonaf0eb3c2021-09-19 20:14:29 +01004
5package main
6
7import (
8 "github.com/onosproject/helmit/pkg/registry"
9 "github.com/onosproject/helmit/pkg/test"
SeanCondon3c3d08f2022-05-27 11:39:58 +010010 aether "github.com/opencord/roc-helm-charts/aether-roc-umbrella/tests"
11 fabric "github.com/opencord/roc-helm-charts/fabric-umbrella/tests"
Sean Condonaf0eb3c2021-09-19 20:14:29 +010012 _ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
13)
14
15func main() {
SeanCondon3c3d08f2022-05-27 11:39:58 +010016 registry.RegisterTestSuite("aether-roc-umbrella", &aether.AetherRocUmbrellaSuite{})
17 registry.RegisterTestSuite("fabric-umbrella", &fabric.FabricUmbrellaSuite{})
Sean Condonaf0eb3c2021-09-19 20:14:29 +010018 test.Main()
19}