You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running tests using a class without the namespace name in the class path results in:
"message": "Type 'EvaluateMethodTestsClass' not found."
when the test is located in the same namespace and finding the class should not be a problem.
Tagging subscribers to this area: @thaystg
See info in area-owners.md if you want to be subscribed.
Issue Details
Running tests using a class without the namespace name in the class path results in:
"message": "Type 'EvaluateMethodTestsClass' not found."
when the test is located in the same namespace and finding the class should not be a problem.
The passed arguments result in a failure because we are redirecting the "parameters" to SetBreakpointInMethod and then to proxy by sending "DotnetDebugger.getMethodLocation". GetMethodLocation won't find a method properly without the full path with namespace, so the current behavior is correct. Closing.
Running tests using a class without the namespace name in the class path results in:
"message": "Type 'EvaluateMethodTestsClass' not found."
when the test is located in the same namespace and finding the class should not be a problem.
Reproduction - uncomment:
in DebuggerTests.EvaluateStaticClassFromStaticMethod.
The text was updated successfully, but these errors were encountered: