shad-go/tparallel/tparallel.go
2022-02-10 22:06:57 +00:00

19 lines
254 B
Go

//go:build !solution
// +build !solution
package tparallel
type T struct {
}
func (t *T) Parallel() {
panic("implement me")
}
func (t *T) Run(subtest func(t *T)) {
panic("implement me")
}
func Run(topTests []func(t *T)) {
panic("implement me")
}