Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 1 | package main |
2 | |||||
3 | import ( | ||||
Filip Tehlar | bb98aac | 2022-12-21 14:40:35 +0100 | [diff] [blame] | 4 | "testing" |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 5 | |
6 | "github.com/stretchr/testify/suite" | ||||
7 | ) | ||||
8 | |||||
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 9 | func TestTapSuite(t *testing.T) { |
10 | var m TapSuite | ||||
11 | suite.Run(t, &m) | ||||
12 | } | ||||
13 | |||||
14 | func TestNs(t *testing.T) { | ||||
15 | var m NsSuite | ||||
16 | suite.Run(t, &m) | ||||
17 | } | ||||
18 | |||||
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 19 | func TestVeths(t *testing.T) { |
20 | var m VethsSuite | ||||
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 21 | suite.Run(t, &m) |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 22 | } |
Filip Tehlar | c204c87 | 2022-12-21 08:59:16 +0100 | [diff] [blame] | 23 | |
24 | func TestNoTopo(t *testing.T) { | ||||
25 | var m NoTopoSuite | ||||
26 | suite.Run(t, &m) | ||||
27 | } | ||||
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 28 | |
29 | func TestNginx(t *testing.T) { | ||||
30 | var m NginxSuite | ||||
31 | suite.Run(t, &m) | ||||
32 | } |