Advertisement
Nickname
bv
Registered since:
January 17, 2002
Short bio:
Bill Venners is president and CEO of Artima, Inc.
Home page:
http://www.artima.com/
Total posts:
2284

Forum posts by Bill Venners:

153 pages [ Previous 1 ... 35 36 37 38 39 40 41 42 43 44 45 Next ]
Posted in Programming in Scala Forum, Jun 9, 2008, 4:30 PM
We had exercises on the list, but due to time constraints they won't make it into the first edition. Sorry about that. We've got that on the list for the second edition.
Posted in Weblogs Forum, Jun 9, 2008, 1:48 PM
> [i looked around but didn't find a way to send general> site feedback? sorry for spamming here!] for long articles> like this, it would be great if the "comments" link from> the article went to the start of the comments, rather than> the re-print of the article which precedes the comments,> especially when the article is longer, like this...
Posted in Weblogs Forum, Jun 9, 2008, 10:36 AM
> You described your path to Scala-ic code in your post on> the first release of ScalaTest, replacing SuiteRunner's> mutable state. How did the tests you wrote around> SuiteRunner/ScalaTest change as a result of your> decreasing reliance on mutable state?> OK. Basically, the way I'd summarize my current take on mutable state in Scala programs...
Posted in Weblogs Forum, Jun 6, 2008, 10:03 AM
> > If you count the number of chars you save, it isn't> that> > much. I also added ImpSuite in 0.9.3, so that's the> > alternative if you prefer to be more concise. But I> hate> > to drive everyone to ImpSuite if what they're really> after> > is more conciseness.> >> Your reasoning here seems right to me - the added surface> area isn't nearly...
Posted in Weblogs Forum, Jun 5, 2008, 11:25 AM
> Being very familiar with setUp/tearDown usage (and I> assume it's mostly syntax that has changed with> @Before/@After, not usage), I find it very frustrating to> duplicate fixture code in my test methods.> > Both the createFixture and withXxx alternatives force> identical calls to those structures in each test method,> something I...
Posted in Weblogs Forum, Jun 2, 2008, 10:38 PM
In the most recent release of ScalaTest, I've placed some guidelines in the documentation for how to avoid the use of vars in testing code. In this post I include those guidelines and ask for feedback.
Posted in All Buzz Forum, Jun 2, 2008, 11:03 PM
In the most recent release of ScalaTest, I've placed some guidelines in the documentation for how to avoid the use of <code>var</code>s in testing code. In this post I include those guidelines and ask for feedback.
Posted in Scala Buzz, Jun 2, 2008, 11:03 PM
In the most recent release of ScalaTest, I've placed some guidelines in the documentation for how to avoid the use of <code>var</code>s in testing code. In this post I include those guidelines and ask for feedback.
Posted in Artima Developer Spotlight Forum, Jun 2, 2008, 10:40 PM
In the most recent release of ScalaTest, I've placed some guidelines in the documentation for how to avoid the use of vars in testing code. In this post I include those guidelines and ask for feedback.
Posted in ScalaTest/ScalaUtils Forum, Jun 1, 2008, 8:32 PM
> As in JUnit, is there no direct way to test private> methods?> http://www.artima.com/suiterunner/private.html>Yes, that's the case. What you can do is make a "Friend" class that exposes methods with the same API, which wrap the class under test and uses reflection to invoke the private methods. I've done that in a few places inside ScalaTest...
Posted in Programming in Scala Forum, May 30, 2008, 1:21 PM
Sorry, the example in the book does not work with the current version ofScalaSwing. There are some incompatibilities having to do with Tables. These will be worked out in the next release of Scala and the book.Bill
Posted in Programming in Scala Forum, May 22, 2008, 1:25 PM
Hi Blair,One other thing was that I got the names in the PrePrint2 acknowledgements from the Artima accounts of the people who posted comments. The names are public, so it fits within our privacy policy to display them. We display them on the profile page, for example. But they may not be real names. So I felt a bit funny about putting names of...
Posted in Programming in Scala Forum, May 22, 2008, 11:45 AM
Hi Blair,We definitely appreciate all of your comments and those the other readers who submitted them. They have really helped a lot. At least at one point I think you had contributed the most. The reason we decided not to list all names in the final book was that it was just too many names, so we just thanked all of you without naming you...
Posted in Programming in Scala Forum, May 19, 2008, 2:30 PM
> Anyone else notice that the index is only 3 pages?> > I would expect a 600+ page book to have more than three> pages in the index...The index isn't finished yet. It will be more substantial in the final version.
Posted in Artima Developer Spotlight Forum, May 2, 2008, 12:18 PM
> Bill, in these languages that automatically give you> accessors, how do you make them immutable / read-only?> e.g. I want to allow> > > if (bill.age > 50)> startSendingAARPmaterials();> > > but not allow> > > bill.age = 21; // fake ID to allow Bill to buy beer> As James pointed out, in Scala you just say val instead of var. val defines a...
153 pages [ Previous 1 ... 35 36 37 38 39 40 41 42 43 44 45 Next ]
Advertisement