Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
ScalaTest for Scala IDE Plugin 0.9.1 Released!
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  18 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Bill Venners  
View profile  
 More options Jul 26 2012, 2:44 am
From: Bill Venners <b...@artima.com>
Date: Thu, 26 Jul 2012 01:44:54 -0500
Local: Thurs, Jul 26 2012 2:44 am
Subject: ScalaTest for Scala IDE Plugin 0.9.1 Released!
Hello All,

After much hard work spanning an entire year, we are proud to announce
the first official release of the ScalaTest for Scala IDE Plugin! Not
only does this plugin give Scala programmers the level of
test-framework/IDE integration that Java programmers have enjoyed with
JUnit, it goes quite a bit farther:

1. You can pretty much right click on anything that looks runnable and
run it as a test.
2. You can run just the tests you select in code, run tests you select
in reported results, rerun all tests or just previously failed tests,
or run tests in a selected class, file, or package.
3. The results pane mirrors the structure or the specification (i.e.,
if your BDD-style specification text is nested in the source, it will
appear nested in the results pane).
4. You can hop from results to test, scope, class, or line of failed code.
5. You can unfold the top of that stack that is automatically folded
so only the offending line of code is shown.
6. And, because ScalaTest is a platform that can support different
styles of testing, the plugin can be extended to grant full IDE
support for non-ScalaTest-native styles, such as a ScalaCheck
Properties classes, Specs2 Specifications, or custom styles.

You can use the plugin with any release of ScalaTest, but you'll enjoy
the most seamless IDE integration if you use ScalaTest 2.0.M2 (a very
carefully tested milestone release). You can plug it into either the
latest stable release of the Scala IDE for Eclipse (version 2.0.2), or
a nightly build of Eclipse 2.1.0.

So, how do you get the plugin? Select Help -> Install New Software in
Eclipse, and enter as your update site one of the "Scala IDE Ecosystem
update site" URLs on this page:

http://scala-ide.org/download/ecosystem.html

Select ScalaTest for Scala IDE (and the others if you don't have them
already), and click Next then Finish.

Information on the features of the integration (and some screenshots
(and the source code)) is here:

https://github.com/scalatest/scalatest-eclipse-plugin

A video demo of the plugin that I gave back at ScalaDays is here:

http://skillsmatter.com/podcast/scala/scalatest-scalamock-subcut

Info on ScalaTest 2.0.M2 is here:

http://www.scalatest.org/download#20m2

With the release notes for ScalaTest 2.0.M2 here:

http://www.scalatest.org/release_notes/2.0.M2

Many thanks to Chua Chee Seng, George Berger, Luc Bourlier, Mirco
Dotta, Iulian Dragoș and everyone else who helped with this effort.

Enjoy!

Bill
----
Bill Venners
Artima, Inc.
http://www.artima.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
ijuma  
View profile  
 More options Jul 26 2012, 4:45 am
From: ijuma <ism...@juma.me.uk>
Date: Thu, 26 Jul 2012 01:45:01 -0700 (PDT)
Local: Thurs, Jul 26 2012 4:45 am
Subject: Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

Looks very nice. Great work everyone.

Best,
Ismael


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Esler  
View profile  
 More options Jul 26 2012, 7:01 am
From: Kevin Esler <Kevin.Es...@gmail.com>
Date: Thu, 26 Jul 2012 04:01:55 -0700 (PDT)
Local: Thurs, Jul 26 2012 7:01 am
Subject: Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

Nice work!  Thank you.

Any chance it will work in Eclipse Juno soon? I know the release notes
indicate Indigo is required.  

(BTW It seemed to install okay into Juno. But when I tried to run a test,
the progress display appears but this error message was in the console for
the test run:

"Unrecognized arguments: -k, localhost, 62574.")


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Venners  
View profile  
 More options Jul 26 2012, 8:00 am
From: Bill Venners <b...@artima.com>
Date: Thu, 26 Jul 2012 07:00:51 -0500
Local: Thurs, Jul 26 2012 8:00 am
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!
Hi,

I believe this is a question for the Scala IDE folks. As far as I
know, the Juno limitation is that Scala IDE for Eclipse does not yet
run on Juno.

Bill

--
Bill Venners
Artima, Inc.
http://www.artima.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chee Seng Chua  
View profile  
 More options Jul 26 2012, 10:46 am
From: Chee Seng Chua <chees...@amaseng.com>
Date: Thu, 26 Jul 2012 22:46:03 +0800
Local: Thurs, Jul 26 2012 10:46 am
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

Hi Kevin,

Just curious about the error message "Unrecognized arguments: -k,
localhost, 62574.", are you using ScalaTest 2.0.M2?  The -k argument is
only recognized by ScalaTest 2.0, when it detects that you have ScalaTest
1.8.x it should just use the default Runner UI in ScalaTest, do you have
both ScalaTest 1.x and ScalaTest 2.0 in the classpath?

Thanks.

Best Regards,
Chee Seng


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Esler  
View profile  
 More options Jul 26 2012, 7:31 pm
From: Kevin Esler <Kevin.Es...@gmail.com>
Date: Thu, 26 Jul 2012 16:31:41 -0700 (PDT)
Local: Thurs, Jul 26 2012 7:31 pm
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

You're right. I had Scalatest 1.8 in the classpath. I guess it came in as a
transitive dependency when SBT built the .classpath file.

Anyway I removed it.  Now when I launch Scalatest at a package I see this:

WARNING: -p has been deprecated and will be reused for a different (but
still very cool) purpose in ScalaTest 2.0. Please change all uses of -p to
-R.

DEBUG: Discovery Starting

Exception in thread "main" java.lang.OutOfMemoryError: PermGen space

Maybe not yet qualified on Juno?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Venners  
View profile  
 More options Jul 26 2012, 7:35 pm
From: Bill Venners <b...@artima.com>
Date: Thu, 26 Jul 2012 18:35:54 -0500
Local: Thurs, Jul 26 2012 7:35 pm
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!
Hi Kevin,

Yes, the Scala IDE for Eclipse plugin itself isn't qualified for Juno.
ScalaTest for Scala IDE is a plugin into the Scala IDE for Eclipse. So
many levels of plugin. Anyway, just for the heck of it you might try
bumping the memory size of the JVM. The other things are fine.
Discovery starting is actually a stray println which we should have
removed, and the -p is just a deprecation warning. -p still works
fine. So the actual problem you hit is you ran out of memory.

Bill

--
Bill Venners
Artima, Inc.
http://www.artima.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Esler  
View profile  
 More options Jul 26 2012, 9:33 pm
From: Kevin Esler <Kevin.Es...@gmail.com>
Date: Thu, 26 Jul 2012 18:33:14 -0700 (PDT)
Local: Thurs, Jul 26 2012 9:33 pm
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

Thanks Bill. I tried bumping up "permgen" to 1gig but no luck. Same
problem.  WIll wait for official support but it looks good.

BTW I've been using the nightly builds of Eclipse IDE for Juno for several
week now with nary a problem, and steadily improving feature set. Looking
good.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chee Seng Chua  
View profile  
 More options Jul 26 2012, 9:47 pm
From: Chee Seng Chua <chees...@amaseng.com>
Date: Fri, 27 Jul 2012 09:47:54 +0800
Local: Thurs, Jul 26 2012 9:47 pm
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

Hi Kevin,

Just a quick update, the Juno Scala IDE source doesn't seems to compile
against ScalaTest plugin yet, see
https://groups.google.com/forum/?fromgroups#!msg/scala-ide-dev/jdy3D2...
, it
is missing a pull request (which is in master already), and I think we
perhaps we need a different maven profile to build for Juno, like we use
different profile to build for 2.0.2 and nightly (see 'Building' section in
https://github.com/scalatest/scalatest-eclipse-plugin), I'll try to check
with luc.

Cheers,
Chee Seng


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chee Seng Chua  
View profile  
 More options Jul 26 2012, 11:14 pm
From: Chee Seng Chua <chees...@amaseng.com>
Date: Fri, 27 Jul 2012 11:14:12 +0800
Local: Thurs, Jul 26 2012 11:14 pm
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

Hi Kevin,

>>I tried bumping up "permgen" to 1gig but no luck

Just to double check, did you add the permgen setting to the Run
Configuration screen (under Arguments tab, VM arguments)?

Cheers,
Chee Seng

On Fri, Jul 27, 2012 at 9:47 AM, Chee Seng Chua <chees...@amaseng.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Esler  
View profile  
 More options Jul 27 2012, 10:37 am
From: Kevin Esler <Kevin.Es...@gmail.com>
Date: Fri, 27 Jul 2012 07:37:50 -0700 (PDT)
Local: Fri, Jul 27 2012 10:37 am
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

Bingo! Thanks Chee Seng. Adjusting permgen on the Run Config got it to
work. All my tests are now running in Juno. Thanks for the help.

...

read more »


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Venners  
View profile  
 More options Jul 27 2012, 10:41 am
From: Bill Venners <b...@artima.com>
Date: Fri, 27 Jul 2012 09:41:38 -0500
Local: Fri, Jul 27 2012 10:41 am
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!
Hi Kevin,

That's great. Thanks for letting us know.

Bill

...

read more »


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chee Seng Chua  
View profile  
 More options Jul 27 2012, 10:42 am
From: Chee Seng Chua <chees...@amaseng.com>
Date: Fri, 27 Jul 2012 22:42:53 +0800
Local: Fri, Jul 27 2012 10:42 am
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

Hi Kevin,

Great to hear that it is working on Juno!

Cheers,
Chee Seng

...

read more »


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Venners  
View profile  
 More options Jul 27 2012, 10:44 am
From: Bill Venners <b...@artima.com>
Date: Fri, 27 Jul 2012 09:44:12 -0500
Local: Fri, Jul 27 2012 10:44 am
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!
Hi Kevin,

And by the way, please tell us about your experience with the plugin.
We appreciate any bug reports, suggestions for improvements, and
general comments too.

Thanks.

Bill

On Fri, Jul 27, 2012 at 9:42 AM, Chee Seng Chua <chees...@amaseng.com> wrote:

...

read more »


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Moore  
View profile  
 More options Aug 28 2012, 12:14 am
From: James Moore <ja...@restphone.com>
Date: Mon, 27 Aug 2012 21:09:24 -0700
Local: Tues, Aug 28 2012 12:09 am
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!
Is there a release of the Scalatest Eclipse plugin for 2.10?  I did
try the 2.9 version, but it doesn't do anything (no run as ->
scalatest anywhere I can see, for example).

--
James Moore
ja...@restphone.com
http://blog.restphone.com/
http://www.linkedin.com/in/jamesmmooreiv


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chee Seng Chua  
View profile  
 More options Aug 28 2012, 12:31 am
From: Chee Seng Chua <chees...@amaseng.com>
Date: Tue, 28 Aug 2012 12:31:15 +0800
Local: Tues, Aug 28 2012 12:31 am
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

Hi James,

Unfortunately we don't have one built for juno deployed.  Last time I
checked it seems that the Scala IDE Juno branch is missing a pull request
that needs a little tweak for the plugin to compile correctly:-

https://groups.google.com/forum/?fromgroups=#!msg/scala-ide-dev/jdy3D...

Not sure if they had merged the missing pull request in by now, I'll give
it a try again when possible.

Hope this helps for now.

Thanks!

Best Regards,
Chee Seng


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Moore  
View profile  
 More options Aug 28 2012, 11:01 am
From: James Moore <ja...@restphone.com>
Date: Tue, 28 Aug 2012 08:00:37 -0700
Local: Tues, Aug 28 2012 11:00 am
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!
On Mon, Aug 27, 2012 at 9:31 PM, Chee Seng Chua <chees...@amaseng.com> wrote:

> Hi James,

> Unfortunately we don't have one built for juno deployed.

Sorry, I didn't mean for Juno, I meant for Indigo with the 2.10 IDE,
not the 2.9.

--
James Moore
ja...@restphone.com
http://blog.restphone.com/
http://www.linkedin.com/in/jamesmmooreiv


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chee Seng Chua  
View profile  
 More options Aug 28 2012, 11:06 am
From: Chee Seng Chua <chees...@amaseng.com>
Date: Tue, 28 Aug 2012 23:06:46 +0800
Local: Tues, Aug 28 2012 11:06 am
Subject: Re: [scalatest-users] Re: ScalaTest for Scala IDE Plugin 0.9.1 Released!

Ah I see, I never try to build with that branch before, probably worth
trying.  I'll try myself soon.

Thanks!

Chee Seng


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »