Sławosz
Sławosz

Reputation: 11687

Add scala test to scala eclipse project

I started with scala with eclipse and I have problems with adding ScalaTest to my project. I have already downloaded ScalaTest, but what next? I just starting with jvm and feel lost...

Upvotes: 4

Views: 756

Answers (1)

Matthew Farwell
Matthew Farwell

Reputation: 61705

Right click on the project, select Java Build Path, select the tab Libraries and Click on the button 'Add External Jars'. Select the jar that you've just downloaded and click OK. This should add scalatest to your Eclipse classpath.

Upvotes: 5

Related Questions