The site to install update from Eclips is
URL: http:///download.scala-ide.org/sdk/e37/scala29/stable/site
and as of how to run the Test within the Scala IDE you can :
For Eclipse users, ScalaTest offers a powerful plugin that provides seamless support for testing in the Scala IDE for Eclipse. 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:
- You can right click on any test or collection of tests and run them.
- 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.
- 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).
- You can hop from results to test, scope, class, or line of failed code.
- You can unfold the top of that stack that is automatically folded so only the offending line of code is shown.
- 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.
or
Reference: