2908f8cf07
This converts more tests to configure VPP from test context. Type: test Signed-off-by: Maros Ondrejicka <maros.ondrejicka@pantheon.tech> Change-Id: Idf26b0c16f87e87c97b198412af39b99d947ced6
16 lines
171 B
Go
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")
|
|
}
|