Skip to content

Commit

Permalink
Add more remote vlan examples (deployments-k8s#4433)
Browse files Browse the repository at this point in the history
Added remote vlan examples entry point
Related PR: deployments-k8s/#4465

Signed-off-by: Laszlo Kiraly <[email protected]>
  • Loading branch information
ljkiraly committed Feb 8, 2022
1 parent 0dcf642 commit e0fe3d2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion entry_point_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2022 Doc.ai and/or its affiliates.
// Copyright (c) 2021 Doc.ai and/or its affiliates.
//
// SPDX-License-Identifier: Apache-2.0
//
Expand Down Expand Up @@ -27,6 +27,7 @@ import (
"github.com/networkservicemesh/integration-tests/suites/interdomain"
"github.com/networkservicemesh/integration-tests/suites/memory"
"github.com/networkservicemesh/integration-tests/suites/observability"
"github.com/networkservicemesh/integration-tests/suites/remotevlan"
)

func TestRunHealSuiteSingle(t *testing.T) {
Expand All @@ -52,3 +53,7 @@ func TestRunObservabilitySuiteSingle(t *testing.T) {
func TestRunInterdomainSuite(t *testing.T) {
suite.Run(t, new(interdomain.Suite))
}

func TestRunRvlanSuite(t *testing.T) {
suite.Run(t, new(remotevlan.Suite))
}

0 comments on commit e0fe3d2

Please sign in to comment.