608d0069d9
Type: test Signed-off-by: Filip Tehlar <ftehlar@cisco.com> Change-Id: Ie90e4b02c268bc3ca40171b03829f5686fb83162
16 lines
195 B
Go
16 lines
195 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type TapSuite struct {
|
|
HstSuite
|
|
}
|
|
|
|
func (s *TapSuite) SetupSuite() {
|
|
time.Sleep(1 * time.Second)
|
|
s.HstSuite.SetupSuite()
|
|
s.configureNetworkTopology("tap")
|
|
}
|