Sean Condon | af0eb3c | 2021-09-19 20:14:29 +0100 | [diff] [blame] | 1 | // SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org> |
| 2 | // |
| 3 | // SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| 4 | |
| 5 | package main |
| 6 | |
| 7 | import ( |
| 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 | |
| 14 | func main() { |
| 15 | registry.RegisterTestSuite("aether-roc-umbrella", &tests.AetherRocUmbrellaSuite{}) |
| 16 | test.Main() |
| 17 | } |