Unit testing Scala

后端 未结 3 490
Happy的楠姐
Happy的楠姐 2021-02-01 01:07

I just recently started learning the Scala language and would like to do it in TDD-way. Could you share your experiences on the unit testing frameworks there are for Scala and t

3条回答
  •  南方客
    南方客 (楼主)
    2021-02-01 01:38

    Have you looked at ScalaTest ?

    I've not used it, but it comes from Bill Venners and co at Artima, and consequently I suspect it'll do the job. It doesn't appear to have IDE integration, however.

    This blog entry is a little old, but suggests that TestNG is the best option for testing Scala. TestNG will certainly have IDE integrations.

    EDIT: I've just realised that I wrote this answer in 2009, and the world has moved on (!). I am currently using ScalaTest, the IDE integration works fine, and I can strongly recommend it. In particular the matcher DSL works very nicely

提交回复
热议问题