shad-go/tparallel/tparallel.go

19 lines
233 B
Go
Raw Normal View History

2020-03-18 15:35:54 +00:00
// +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")
}