We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 test case name to test cases.
ex.
t.Run(testname, func(t *testing.T) { // do something })
I want to set the name because it is difficult to understand which test case failed.
The text was updated successfully, but these errors were encountered:
set case names and use t.Run(name, func(){...})
69d6ff1
fixes bmf-san#109
Successfully merging a pull request may close this issue.
Description
Add test case name to test cases.
ex.
I want to set the name because it is difficult to understand which test case failed.
Describe the feature you'd like to request
Describe the solution you'd like
The text was updated successfully, but these errors were encountered: