ffcd8b72a70f2d4db56943b99fc73653359b4cb9
[vpp.git] / extras / hs-test / suite_tap_test.go
1 package main
2
3 import (
4         "time"
5 )
6
7 type TapSuite struct {
8         HstSuite
9 }
10
11 func (s *TapSuite) SetupSuite() {
12         time.Sleep(1 * time.Second)
13         s.teardownSuite = setupSuite(&s.Suite, "tap")
14 }
15