(Mis)Understanding Smalltalk and TDD - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:58:07Z http://stackoverflow.com/feeds/question/670347 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/670347/misunderstanding-smalltalk-and-tdd 8 (Mis)Understanding Smalltalk and TDD Tordek 2009-03-22T00:46:09Z 2009-03-23T12:16:13Z <p>I'm trying to learn Smalltalk by doing, so I'm getting a grip on the syntax and style by buiding a simple "Matrix" class.</p> <p>First of all, I'd be grateful if linked to a good Smalltak tutorial (although this is totally optional), preferably one that doesn't involve using the GUIs (I'd rather type my <code>.st</code>s than fish around the hierarchy explorer to put the methods in their place).</p> <p>Then, on TDD: For this project I'm calling <code>gst-sunit -f matrix.st -f matrix-test.st BaseMatrixTests</code>, and there's bound to be a better way than that. <strong>Is there?</strong></p> <p>And finally, on asserts: I'm trying to write a method and put asserts within, eg.:</p> <pre><code>Matrix&gt;&gt;multiplyBy: anotherMatrix [ [ self isNotEmpty ] assert. "Do Multiplication" [ result dimensions = (self height)@(anotherMatrix width) ] assert. ] </code></pre> <p><strong>How can I do that kind of asserts?</strong></p> <p>Edit: Questions marked explicitly.</p> http://stackoverflow.com/questions/670347/misunderstanding-smalltalk-and-tdd/670598#670598 3 Answer by Steve Rowe for (Mis)Understanding Smalltalk and TDD Steve Rowe 2009-03-22T05:54:21Z 2009-03-22T05:54:21Z <p>Other than a request for a tutorial, I don't see a question here. Could you clarify what it is you want to know?</p> <p>A good list of resources for a beginner can be found in this question: <a href="http://stackoverflow.com/questions/481976/is-there-a-dive-into-smalltalk-book">http://stackoverflow.com/questions/481976/is-there-a-dive-into-smalltalk-book</a></p> http://stackoverflow.com/questions/670347/misunderstanding-smalltalk-and-tdd/670599#670599 8 Answer by MarkusQ for (Mis)Understanding Smalltalk and TDD MarkusQ 2009-03-22T05:57:31Z 2009-03-22T05:57:31Z <p>I hate to say it ('cause you clearly indicated you don't want to hear it), but get into the IDE. Trying to get your head around smalltalk without using the IDE is like going to Paris and eating at McDonalds. Sure, you're in Paris, but you aren't really exposing yourself to what it's all about.</p> <p>The key thing about smalltalk is that <em>it's all objects</em>. All the way down (integers and characters are objects) and all the way up (classes, methods, the browsers, the IDE itself) are <em>all objects</em>. If you insist on fighting it you'll have about as much luck as someone wanting to learn how to write C by dragging and dropping things.</p> http://stackoverflow.com/questions/670347/misunderstanding-smalltalk-and-tdd/670640#670640 9 Answer by Charlie Martin for (Mis)Understanding Smalltalk and TDD Charlie Martin 2009-03-22T07:07:18Z 2009-03-22T07:07:18Z <p>Okay, several pieces here.</p> <p>First, I agree with markusQ, although I completely sympathize: I'd rather be able to write my code in EMACS directly. Bt one of the things about Smalltalk is that it really is very unforgiving of people who don't want to do things the Smalltalk Way. In this case, the Smalltalk Way is to use the browsers.</p> <p>Second, part of the reason that this is the Smalltalk Way is that Smalltalk is, in a lot of ways, not <em>like</em> other languages. There is really, for all practical purposes, no way to make a "separate" Smalltalk executable: all you can do is make an image of Smalltalk with some relatively small fragments of your own code added in. When you write code using an external editor, as with the syntax you show, you're literally just hand typing an import/export format that is somewhat easier to hand type than XML. But only somewhat.</p> <p>The moral is, do it the Smalltalk way, with the browsers.</p> <p>There are some fairly good tutorials for Smalltalk about. I usually use Squeak, so the ones I've seen are using Squeak, as <a href="http://wiki.squeak.org/squeak/792" rel="nofollow">here</a>.</p> <p>On TDD, you're in luck because Smalltalk was the first place to get xUnit. For Smalltalk, it's called SUnit, and there's a good tutorial <a href="http://wiki.squeak.org/squeak/1547" rel="nofollow">here</a>.</p> <p>You're using assertions there in what appears to be basically a "design by contract" approach. There has been work done on adding design by contract to Smalltalk, as <a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.24.1768" rel="nofollow">here</a>. For simple assertions, you can add code as in <a href="http://stackoverflow.com/questions/665455/smalltalk-and-assertions">this SO question</a>. </p> <pre><code>assert: aBlock "Throw an assertion error if aBlock does not evaluates to true." aBlock value ifFalse: [AssertionFailure signal: 'Assertion failed'] </code></pre> http://stackoverflow.com/questions/670347/misunderstanding-smalltalk-and-tdd/671200#671200 5 Answer by jarober for (Mis)Understanding Smalltalk and TDD jarober 2009-03-22T15:57:35Z 2009-03-22T16:02:37Z <p>If you downloaded Cincom Smalltalk Non-Commercial, there are a number of online tutorials. Start here:</p> <p><a href="http://www.cincomsmalltalk.com/userblogs/cincom/blogView?content=tutorials" rel="nofollow">http://www.cincomsmalltalk.com/userblogs/cincom/blogView?content=tutorials</a></p> <p>If you downloaded Squeak, start here:</p> <p><a href="http://wiki.squeak.org/squeak/792" rel="nofollow">http://wiki.squeak.org/squeak/792</a></p> <p>And yes, you really do need to use the IDE to work effectively with Smalltalk.</p> <p>On testing, load SUnit. In Cincom Smalltalk, it's a loadable component; I've covered loading (and using) it in the video tutorials linked above. I'm not entirely sure how to load it for Squeak, or whether it's part of the base there, but it's certainly available for it.</p> http://stackoverflow.com/questions/670347/misunderstanding-smalltalk-and-tdd/671318#671318 1 Answer by Niko for (Mis)Understanding Smalltalk and TDD Niko 2009-03-22T17:20:21Z 2009-03-22T17:20:21Z <p>So, about asserts, Squeak Smalltalk already brings Object>>assert: So, I suppose you can do: </p> <pre><code>self assert: self isNotEmpty. self assert: result dimensions equal: (self height)@(anotherMatrix width) </code></pre> <p>If you are using GNU smalltalk, this might answer how to do assertions there: <a href="http://stackoverflow.com/questions/665455/smalltalk-and-assertions">http://stackoverflow.com/questions/665455/smalltalk-and-assertions</a></p> <p>Niko</p> http://stackoverflow.com/questions/670347/misunderstanding-smalltalk-and-tdd/671408#671408 0 Answer by Alan Lovejoy for (Mis)Understanding Smalltalk and TDD Alan Lovejoy 2009-03-22T18:31:26Z 2009-03-22T18:31:26Z <p><a href="http://www.smalltalk-resources.com/Smalltalk-Getting-the-Message.html" rel="nofollow" title="Smalltalk Primer">link text</a></p> http://stackoverflow.com/questions/670347/misunderstanding-smalltalk-and-tdd/671411#671411 0 Answer by Alan Lovejoy for (Mis)Understanding Smalltalk and TDD Alan Lovejoy 2009-03-22T18:33:35Z 2009-03-22T18:33:35Z <p><a href="http://www.smalltalk-resources.com/Smalltalk-Getting-the-Message.html" rel="nofollow">Smalltalk Primer</a></p> http://stackoverflow.com/questions/670347/misunderstanding-smalltalk-and-tdd/672579#672579 1 Answer by Paolo Bonzini for (Mis)Understanding Smalltalk and TDD Paolo Bonzini 2009-03-23T08:46:08Z 2009-03-23T08:46:08Z <p>Regarding asserts, please look at the other question recently posted.</p> <p>Regarding TDD, yes, calling <code>gst-sunit -f matrix.st -f matrix-test.st BaseMatrixTests</code> is sort of the best way. Everything else just builds on that, for example these could be thee alternatives:</p> <ul> <li>make all TestCase subclasses for your package inherit from a phony subclass so that you can say <code>AllMatrixTests*</code> on gst-sunit's command line (when you add more tests).</li> <li>file in matrix.st from matrix-test.st, thus eliminating one -f option.</li> <li>create a Makefile and package.xml file to create a .star file for your package, as described <a href="http://smalltalk.gnu.org/wiki/creating-and-distributing-packages" rel="nofollow">here</a>. Then you can do just <code>gst-sunit -pMatrix</code>.</li> </ul> http://stackoverflow.com/questions/670347/misunderstanding-smalltalk-and-tdd/673168#673168 1 Answer by Adrian Kuhn for (Mis)Understanding Smalltalk and TDD Adrian Kuhn 2009-03-23T12:16:13Z 2009-03-23T12:16:13Z <p>It has been suggested above to add <code>#assert:</code> to <code>Object</code>, but rather I'd add <code>#assert</code> to <code>BlockClosure</code> (or whatever <code>[] class</code> is in GNU Smalltalk).</p> <pre><code>assert this value ifFalse: [AssertionFailure signal: 'Assertion failed'] </code></pre> <p>and thus use as in</p> <pre><code>[ value notNil ] assert. [ value &gt; 0 ] assert. [ list isEmpty not ] assert. </code></pre> <p>etcetera. </p>