aboutsummaryrefslogtreecommitdiffstats
path: root/tools/go_test_miner/main_test.go
blob: 593095e1f982f8e69e86c46e37ae4fb54ec36f92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package main

import (
	"testing"
)

func TestOk(t *testing.T) {
}

func Test1(a *testing.T) {
}

func Test_Function(tt *testing.T) {
}

func Test(t *testing.T) {
}

//nolint:tests
func Testfail(t *testing.T) {
	panic("Not a test function!")
}