SUnit: Difference between revisions
Appearance
Content deleted Content added
Epicgenius (talk | contribs) Reverted 1 good faith edit by Burrburrr using STiki |
Corrected the invention year of SUnit. |
||
(10 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
'''SUnit''' is an [[automated testing]] framework written by [[Kent Beck]] in 1989; originally intended and often used for [[unit testing]]. It supports testing [[Smalltalk]] code via test code also written in Smalltalk. |
|||
'''SUnit''' is a [[unit testing]] framework for the [[programming language]] [[Smalltalk]]. It is the original source of the [[xUnit]] design, originally written by the creator of [[Extreme Programming]], [[Kent Beck]]. SUnit allows writing tests and checking results in Smalltalk. The resulting tests are very stable, but this method has the disadvantage that testers must be able to write simple Smalltalk programs. |
|||
SUnit was adapted for [[Java (programming language)|Java]] as [[JUnit]] which was notably popular. Subsequently, adaptations were created for many other languages; many also popular. |
|||
Frameworks with similar design are labeled [[xUnit]]. |
|||
== History == |
== History == |
||
SUnit was originally described by Beck in "[https://web.archive.org/web/20150315073817/http://www.xprogramming.com/testfram.htm Simple Smalltalk Testing: With Patterns]" (1989), then published as chapter 30 "Simple Smalltalk Testing", in the book '''Kent Beck's Guide to Better Smalltalk''' by Kent Beck, [[Donald G. Firesmith]] (Editor) (Publisher: Cambridge University Press, Pub. Date: December 1998, {{ISBN|978-0-521-64437-2}}, 408pp) |
|||
== External links == |
== External links == |
||
* {{official website|http://sunit.sourceforge.net}} @ Camp Smalltalk |
* {{official website|http://sunit.sourceforge.net}} @ Camp Smalltalk |
||
* [http://c2.com/cgi/wiki?SmalltalkUnit |
* [http://c2.com/cgi/wiki?SmalltalkUnit SUnit @ Ward Cunningham's Wiki] |
||
* [http://www.xprogramming.com/testfram.htm Kent Beck's original SUnit paper] |
|||
[[Category:Extreme programming]] |
[[Category:Extreme programming]] |
Latest revision as of 06:59, 26 September 2024
SUnit is an automated testing framework written by Kent Beck in 1989; originally intended and often used for unit testing. It supports testing Smalltalk code via test code also written in Smalltalk.
SUnit was adapted for Java as JUnit which was notably popular. Subsequently, adaptations were created for many other languages; many also popular.
Frameworks with similar design are labeled xUnit.
History
[edit]SUnit was originally described by Beck in "Simple Smalltalk Testing: With Patterns" (1989), then published as chapter 30 "Simple Smalltalk Testing", in the book Kent Beck's Guide to Better Smalltalk by Kent Beck, Donald G. Firesmith (Editor) (Publisher: Cambridge University Press, Pub. Date: December 1998, ISBN 978-0-521-64437-2, 408pp)
External links
[edit]- Official website @ Camp Smalltalk
- SUnit @ Ward Cunningham's Wiki