-
Notifications
You must be signed in to change notification settings - Fork 9
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
Problem with TestCaseNameParser.cs #35
Comments
Siphonophora
added a commit
to Siphonophora/testlogger
that referenced
this issue
Jan 21, 2023
@marc-delhoune Thanks for reporting this. yes |
I was using XunitTestAdapter. |
codito
added a commit
to spekt/xunit.testlogger
that referenced
this issue
Jan 26, 2023
codito
added a commit
to spekt/xunit.testlogger
that referenced
this issue
Jan 29, 2023
Pushed testlogger v3.0.86 to all logger and cut a release in nuget. /cc: @Siphonophora |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
If the name of a test (namespace, class, of method) contains a zero (0), the new TestCaseNameParser.cs fails.
The MethodRegex and ClassDataRegex check for [a-z1-9_.], so they do not allow a zero. Should this be [a-z0-9_.] instead?
Using 'Parser=Legacy' solves my problem for now.
Best regards,
Marcus
The text was updated successfully, but these errors were encountered: