-
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
Pharo freezes when clicking on failed test link in Test Runner #41
Comments
Thanks for the report. |
Thank you for your response. I wanted to share that the stable version of Pharo has recently been updated to version 12, and I have observed the same issue occurring in this version as well. Thank you for looking into this. Best regards, |
No real fix yet. But to bypass the issue you can redefine a set of messages the mock objects allowed to override: Normally during the test you can stub arbitrary messages even those which are used by IDE itself (like printString for inspector/debugger). With #standard meta level these messages will not be possible to stub during the test. But usually it is really needed. |
Hm, while I wrote my comment my image with debugger became hanged. So no workaround yet. |
Environment
Issue Details
When a test fails and I click on the failed test link in the Test Runner, the Pharo environment freezes. I have attached a screenshot of the freeze.
The terminal from which Pharo was launched shows the following log with a repeating pattern at lines 9 to 16:
Target and Test Code
The code for the
MyClazz
class being tested and theMyClazzTest
class is as follows:Expected Behavior
The expected behavior is that when a test fails, the Pharo environment should not freeze, allowing the details of the failure to be viewed without issue.
The text was updated successfully, but these errors were encountered: