aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/suite_tap_test.go
blob: 8b0950a797e98543bde78c2324033a4058cabc7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main

import (
	"time"
)

type TapSuite struct {
	HstSuite
}

func (s *TapSuite) SetupSuite() {
	time.Sleep(1 * time.Second)
	s.HstSuite.SetupSuite()
	s.configureNetworkTopology("tap")
}