Unit testing: Difference between revisions

Content deleted Content added
Line 91:
All Smalltalk dialects have a framework included, which is typically based on the original SUnit test framework.
Tests are subclasses of TestCase, and define test methods. Execution and visual presentation is from within the class browser or a UnitTest runner (which is also part of the system).
{{works with|Smalltalk/X}}
In the Class Browser:
[[File:UnitTestInSTXBrowser.png]]
The TestRunner:
[[File:UnitTestInTestRunner.png]]
 
=={{header|zkl}}==