blob: 379d085b052071b0f3b748d990e0ba106ef6855e [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"
10 "github.com/opencord/roc-helm-charts/aether-roc-umbrella/tests"
11 _ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
12)
13
14func main() {
15 registry.RegisterTestSuite("aether-roc-umbrella", &tests.AetherRocUmbrellaSuite{})
16 test.Main()
17}