aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/suite_tap_test.go
blob: ffcd8b72a70f2d4db56943b99fc73653359b4cb9 (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.teardownSuite = setupSuite(&s.Suite, "tap")
}