Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 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) | ||||
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame^] | 13 | |
14 | s.configureNetworkTopology("tap") | ||||
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 15 | } |