shad-go/tparallel/tparallel.go

19 lines
234 B
Go
Raw Permalink Normal View History

2022-02-10 22:06:57 +00:00
//go:build !solution
2020-03-18 15:35:54 +00:00
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")
}