vpp/extras/hs-test/suite_tap_test.go
Maros Ondrejicka 2908f8cf07 hs-test: refactor test cases from ns suite
This converts more tests to configure VPP from test context.

Type: test
Signed-off-by: Maros Ondrejicka <maros.ondrejicka@pantheon.tech>
Change-Id: Idf26b0c16f87e87c97b198412af39b99d947ced6
2023-02-10 05:23:19 +00:00

16 lines
171 B
Go

package main
import (
"time"
)
type TapSuite struct {
HstSuite
}
func (s *TapSuite) SetupSuite() {
time.Sleep(1 * time.Second)
s.configureNetworkTopology("tap")
}