This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Unit-testing in Eclipse (2.8 nightly): class scala.ScalaObject not found

8 replies
Dmitry Grigoriev
Joined: 2009-07-12,
User offline. Last seen 42 years 45 weeks ago.

Hello all,

I use latest nightly eclipse plugin for 2.8. After porting lib.web to
2.8, I found I cannot run individual unit-tests from Eclipse
(Alt+Shift+X, T): it throws "java.lang.NoClassDefFoundError:
scala/ScalaObject". Still, project compiles/rebuilds in Eclipse, and
maven runs all unit-tests. I use JUnit4: @RunWith(classOf[JUnitRunner]).
Can anyone help?

milessabin
Joined: 2008-08-11,
User offline. Last seen 33 weeks 3 days ago.
Re: Unit-testing in Eclipse (2.8 nightly): class scala.ScalaOb

On Sun, Apr 11, 2010 at 9:16 AM, Dmitry Grigoriev wrote:
> I use latest nightly eclipse plugin for 2.8. After porting lib.web to
> 2.8, I found I cannot run individual unit-tests from Eclipse
> (Alt+Shift+X, T): it throws "java.lang.NoClassDefFoundError:
> scala/ScalaObject". Still, project compiles/rebuilds in Eclipse, and
> maven runs all unit-tests. I use JUnit4: @RunWith(classOf[JUnitRunner]).
> Can anyone help?

Can you post your projects .project and .classpath files?

Cheers,

Miles

Dmitry Grigoriev
Joined: 2009-07-12,
User offline. Last seen 42 years 45 weeks ago.
Re: Unit-testing in Eclipse (2.8 nightly): class scala.ScalaObj

Attached.

On 04/11/2010 01:46 PM, Miles Sabin wrote:
> On Sun, Apr 11, 2010 at 9:16 AM, Dmitry Grigoriev wrote:
>> I use latest nightly eclipse plugin for 2.8. After porting lib.web to
>> 2.8, I found I cannot run individual unit-tests from Eclipse
>> (Alt+Shift+X, T): it throws "java.lang.NoClassDefFoundError:
>> scala/ScalaObject". Still, project compiles/rebuilds in Eclipse, and
>> maven runs all unit-tests. I use JUnit4: @RunWith(classOf[JUnitRunner]).
>> Can anyone help?
>
> Can you post your projects .project and .classpath files?
>
> Cheers,
>
>
> Miles
>

milessabin
Joined: 2008-08-11,
User offline. Last seen 33 weeks 3 days ago.
Re: Re: Unit-testing in Eclipse (2.8 nightly): class scala.Sca

On Sun, Apr 11, 2010 at 1:36 PM, Dmitry Grigoriev wrote:
> Attached.

Thanks ...

It looks like you have a 2.8.0 Beta1 build of scalatest in there ...
that won't play nicely with a nightly build.

Cheers,

Miles

Dmitry Grigoriev
Joined: 2009-07-12,
User offline. Last seen 42 years 45 weeks ago.
Re: Unit-testing in Eclipse (2.8 nightly): class scala.ScalaObj

On 04/11/2010 04:47 PM, Miles Sabin wrote:
> It looks like you have a 2.8.0 Beta1 build of scalatest in there ...
> that won't play nicely with a nightly build.

Thank you. And what version would you recommend to use?

milessabin
Joined: 2008-08-11,
User offline. Last seen 33 weeks 3 days ago.
Re: Re: Unit-testing in Eclipse (2.8 nightly): class scala.Sca

On Sun, Apr 11, 2010 at 2:25 PM, Dmitry Grigoriev wrote:
> On 04/11/2010 04:47 PM, Miles Sabin wrote:
>> It looks like you have a 2.8.0 Beta1 build of scalatest in there ...
>> that won't play nicely with a nightly build.
>
> Thank you. And what version would you recommend to use?

If there are corresponding nightly builds of the scalatest binaries
then you should use those.

Cheers,

Miles

Ben Hutchison 3
Joined: 2009-11-02,
User offline. Last seen 42 years 45 weeks ago.
Re: Unit-testing in Eclipse (2.8 nightly): class scala.ScalaOb

1. Ive seen the same thing. As Miles noted, I think its Scala's
general problem with binary compatibility, not anything plugin
related.

2. I dont think all the libraries like Scalatest are tracking the
nightlies. You'll probably have to either suspend unit testing and
wait for an RC release of Scala 2.8 (what Ive done), or else roll back
to the Beta1 and install the matching plugin build from the archive.

Basically, we're in a "rough patch" right now til 2.8 comes out...

-Ben

On Sun, Apr 11, 2010 at 7:16 PM, Dmitry Grigoriev wrote:
> Hello all,
>
> I use latest nightly eclipse plugin for 2.8. After porting lib.web to
> 2.8, I found I cannot run individual unit-tests from Eclipse
> (Alt+Shift+X, T): it throws "java.lang.NoClassDefFoundError:
> scala/ScalaObject". Still, project compiles/rebuilds in Eclipse, and
> maven runs all unit-tests. I use JUnit4: @RunWith(classOf[JUnitRunner]).
> Can anyone help?
>
> --
> Cheers,
> dimgel
>
> http://dimgel.ru/lib.web
> Thin, stateless, strictly typed Scala web framework.
>
>

etorreborre
Joined: 2008-09-03,
User offline. Last seen 1 year 22 weeks ago.
Re: Unit-testing in Eclipse (2.8 nightly): class scala.ScalaOb

For those interested, I've posted this morning a version of specs compatible
with the latest Scala 2.8.0 nightly
(http://scala-tools.org/repo-snapshots/org/scala-tools/testing/specs_2.8....).
But note that:

1. ScalaCheck won't work
2. I haven't yet tested it with the latest Eclipse plugin

Eric.

Ben Hutchison-3 wrote:
>
> 1. Ive seen the same thing. As Miles noted, I think its Scala's
> general problem with binary compatibility, not anything plugin
> related.
>
> 2. I dont think all the libraries like Scalatest are tracking the
> nightlies. You'll probably have to either suspend unit testing and
> wait for an RC release of Scala 2.8 (what Ive done), or else roll back
> to the Beta1 and install the matching plugin build from the archive.
>
> Basically, we're in a "rough patch" right now til 2.8 comes out...
>
> -Ben
>
> On Sun, Apr 11, 2010 at 7:16 PM, Dmitry Grigoriev wrote:
>> Hello all,
>>
>> I use latest nightly eclipse plugin for 2.8. After porting lib.web to
>> 2.8, I found I cannot run individual unit-tests from Eclipse
>> (Alt+Shift+X, T): it throws "java.lang.NoClassDefFoundError:
>> scala/ScalaObject". Still, project compiles/rebuilds in Eclipse, and
>> maven runs all unit-tests. I use JUnit4: @RunWith(classOf[JUnitRunner]).
>> Can anyone help?
>>
>> --
>> Cheers,
>> dimgel
>>
>> http://dimgel.ru/lib.web
>> Thin, stateless, strictly typed Scala web framework.
>>
>>
>
>

Dmitry Grigoriev
Joined: 2009-07-12,
User offline. Last seen 42 years 45 weeks ago.
Re: Unit-testing in Eclipse (2.8 nightly): class scala.ScalaObj

On 04/12/2010 04:11 AM, Ben Hutchison wrote:
> Basically, we're in a "rough patch" right now til 2.8 comes out...

Thank you, I'll probably do the same. (Reverting Eclipse configuration
failed, and I don't want to spend time reinstalling Eclipse.)

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland