blob: 4c0e3a855de339d20e22f30798ebd6691c088684 [file] [log] [blame]
Sean Condonaf0eb3c2021-09-19 20:14:29 +01001// SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
2//
3// SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
4
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}