- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
ScalaTest Matchers Preview
Wed, 2008-12-31, 02:50
Hi All,
I just posted a blog showing the matchers syntax I've been working on
for ScalaTest. It should go out in the next release, 0.9.5, sometime
in January. I'm looking for feedback. The blog post is here:
http://www.artima.com/weblogs/viewpost.jsp?thread=246279
You can provide feedback here on the mailing list or on the forum for
the blog post, which is here:
http://www.artima.com/forums/flat.jsp?forum=106&thread=246279
Thanks.
Bill
----
Bill Venners
Artima, Inc.
http://www.artima.com/
Wed, 2008-12-31, 12:37
#2
Re: ScalaTest Matchers Preview
Hey Bill,
great write-up!
While I agree that one should avoid negations in tests, I firmly believe that "shouldnt" is a way better syntax than "should not {}"
Happy New Year!
On Wed, Dec 31, 2008 at 3:54 AM, Warren Henning <warren.henning@gmail.com> wrote:
--
Viktor Klang
Senior Systems Analyst
great write-up!
While I agree that one should avoid negations in tests, I firmly believe that "shouldnt" is a way better syntax than "should not {}"
Happy New Year!
On Wed, Dec 31, 2008 at 3:54 AM, Warren Henning <warren.henning@gmail.com> wrote:
Coooool.
Warren
On Tue, Dec 30, 2008 at 5:50 PM, Bill Venners <bill@artima.com> wrote:
> http://www.artima.com/weblogs/viewpost.jsp?thread=246279
--
Viktor Klang
Senior Systems Analyst
Wed, 2008-12-31, 14:47
#3
Re: ScalaTest Matchers Preview
Hi Viktor,
I hadn't thought of "shouldnt". I was using shouldNot. That's a good
idea. The must variant would be mustnt. Sounds a bit more of a
stretch, or possibly a bit more British English. andNot and orNot
could stay as they are, or just not have them, because there's no
andnt or ornt! Anyway I'm going to leave any of these out probably in
the first release, so people can report based on experience using them
what's really a pain that needs solving.
Thanks.
Bill
On Wed, Dec 31, 2008 at 3:32 AM, Viktor Klang wrote:
> Hey Bill,
>
> great write-up!
>
> While I agree that one should avoid negations in tests, I firmly believe
> that "shouldnt" is a way better syntax than "should not {}"
>
> Happy New Year!
>
> On Wed, Dec 31, 2008 at 3:54 AM, Warren Henning
> wrote:
>>
>> Coooool.
>>
>> Warren
>>
>> On Tue, Dec 30, 2008 at 5:50 PM, Bill Venners wrote:
>> > http://www.artima.com/weblogs/viewpost.jsp?thread=246279
>
>
>
> --
> Viktor Klang
> Senior Systems Analyst
>
Wed, 2008-12-31, 15:27
#4
Re: ScalaTest Matchers Preview
Hi Viktor,
Actually, there's one other possibility that I had rejected, but maybe
should reconsider. I can just replicate everything under not, so you
wouldn't need parens. You could negate this:
object should equal (5)
by writing this:
object should not equal (5)
The reason I rejected that was that in the first case, equal requires
parens, but in the second case, it does not require parens. I thought
that would be confusing, but later I started always using parens
around the last token whether they were required or not. Using that
technique it probably wouldn't be confusing.
Bill
On Wed, Dec 31, 2008 at 3:32 AM, Viktor Klang wrote:
> Hey Bill,
>
> great write-up!
>
> While I agree that one should avoid negations in tests, I firmly believe
> that "shouldnt" is a way better syntax than "should not {}"
>
> Happy New Year!
>
> On Wed, Dec 31, 2008 at 3:54 AM, Warren Henning
> wrote:
>>
>> Coooool.
>>
>> Warren
>>
>> On Tue, Dec 30, 2008 at 5:50 PM, Bill Venners wrote:
>> > http://www.artima.com/weblogs/viewpost.jsp?thread=246279
>
>
>
> --
> Viktor Klang
> Senior Systems Analyst
>
Coooool.
Warren
On Tue, Dec 30, 2008 at 5:50 PM, Bill Venners wrote:
> http://www.artima.com/weblogs/viewpost.jsp?thread=246279