Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add full support of testing TB inteface #11

Closed
apalashkin opened this issue Jul 1, 2022 · 1 comment · Fixed by #10
Closed

Add full support of testing TB inteface #11

apalashkin opened this issue Jul 1, 2022 · 1 comment · Fixed by #10
Assignees
Labels
enhancement New feature or request

Comments

@apalashkin
Copy link

apalashkin commented Jul 1, 2022

add support of testing.TB

type TB interface {
	Cleanup(func())
	Error(args ...any)
	Errorf(format string, args ...any)
	Fail()
	FailNow()
	Failed() bool
	Fatal(args ...any)
	Fatalf(format string, args ...any)
	Helper()
	Log(args ...any)
	Logf(format string, args ...any)
	Name() string
	Setenv(key, value string)
	Skip(args ...any)
	SkipNow()
	Skipf(format string, args ...any)
	Skipped() bool
	TempDir() string
}
@koodeex koodeex self-assigned this Jul 4, 2022
@koodeex koodeex added the enhancement New feature or request label Jul 4, 2022
@koodeex koodeex linked a pull request Jul 4, 2022 that will close this issue
@koodeex
Copy link
Collaborator

koodeex commented Jul 6, 2022

With v0.6.11 added following testing.TB methods support:

  • Fatal/Fatalf
  • Skipf
  • Name
  • Fail
  • FailNow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants