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:
本文介绍如何在Eclipse环境下利用ScalaTest插件实现无缝的测试支持,包括右键运行测试、筛选测试运行、上下文依赖测试等功能,提供与JUnit相媲美的IDE集成体验,并支持不同风格的测试,如ScalaCheck、Specs2等。
1074

被折叠的 条评论
为什么被折叠?



