type testing.T

31 uses

	testing (current package)
		testing.go#L414: 	sub      []*T      // Queue of subtests to be run in parallel.
		testing.go#L654: var _ TB = (*T)(nil)
		testing.go#L666: type T struct {
		testing.go#L1033: func (t *T) Parallel() {
		testing.go#L1074: 	F    func(*T)
		testing.go#L1079: func tRunner(t *T, fn func(t *T)) {
		testing.go#L1205: func (t *T) Run(name string, f func(t *T)) bool {
		testing.go#L1216: 	t = &T{
		testing.go#L1251: func (t *T) Deadline() (deadline time.Time, ok bool) {
		testing.go#L1434: func (t *T) report() {
		testing.go#L1498: 			t := &T{
		testing.go#L1509: 			tRunner(t, func(t *T) {

	src.elv.sh/pkg/cli/clitest
		apptest.go#L84: func (f *Fixture) TestTTY(t *testing.T, args ...interface{}) {
		apptest.go#L90: func (f *Fixture) TestTTYNotes(t *testing.T, args ...interface{}) {
		fake_tty.go#L218: func (t TTYCtrl) TestBuffer(tt *testing.T, b *term.Buffer) {
		fake_tty.go#L240: func (t TTYCtrl) TestNotesBuffer(tt *testing.T, b *term.Buffer) {
		fake_tty.go#L290: func testBuffer(t *testing.T, want *term.Buffer, ch <-chan *term.Buffer) bool {

	src.elv.sh/pkg/eval/evaltest
		evaltest.go#L115: func Test(t *testing.T, tests ...TestCase) {
		evaltest.go#L122: func TestWithSetup(t *testing.T, setup func(*eval.Evaler), tests ...TestCase) {
		evaltest.go#L125: 		t.Run(strings.Join(tt.codes, "\n"), func(t *testing.T) {
		evaltest.go#L158: func evalAndCollect(t *testing.T, ev *eval.Evaler, texts []string) Result {

	src.elv.sh/pkg/eval/vals
		testutils.go#L12: 	t *testing.T
		testutils.go#L17: func TestValue(t *testing.T, v interface{}) ValueTester {

	src.elv.sh/pkg/prog/progtest
		progtest.go#L62: func (f *Fixture) TestOut(t *testing.T, fd int, wantOut string) {
		progtest.go#L70: func (f *Fixture) TestOutSnippet(t *testing.T, fd int, wantOutSnippet string) {
		progtest.go#L144: func TestError(t *testing.T, f *Fixture, exit int, wantErrSnippet string) {

	src.elv.sh/pkg/store/storetest
		cmd.go#L33: func TestCmd(t *testing.T, tStore store.Store) {
		dir.go#L33: func TestDir(t *testing.T, tStore store.Store) {
		shared_var.go#L10: func TestSharedVar(t *testing.T, tStore store.Store) {