I'm learning Scala now. I saw there are 2 test frameworks there, ScalaTest and Specs. My only problem is that I'm not still at ease with the language to decide which is better. Also I'm used to write tests before code, at the moment I have no clear idea how to do it in functional programming. Ideally I'd like to learn Scala in a TDD fashion, is there any resource about it?
|
feedback
|
|
There is a functional koan which might be something you are looking for. Dick Wall from the Java Posse started a github project: https://github.com/relevance/functional-koans/tree/scala You need maven to start it via | |||||||||
feedback
|
|
So, test frameworks. There are other questions about that, though I'd like to point out that there's also ScalaCheck. ScalaCheck is not as fully features as Specs and ScalaTest, but, on the other hand, both Specs and ScalaTest can integrate with it. Personally, I'd rather go with ScalaCheck, which is likely very different from the unit testing frameworks you are used to. This difference can be good in keeping you from stating tests in an object oriented manner. Now, to the main concern of your question: is there a TDD-like Scala tutorial? I don't know of any, though the answer about functional koans appear to approach what you want. | |||||
feedback
|
|
ScalaTest is the more richly-featured and flexible of the two frameworks. Having said that... I'm currently favouring Specs, they seem to be doing a far better job of keeping up with the latest Scala releases and the IntelliJ integration also seems to work better. Specs also has the advantage, for you, of having a smaller API to learn. | |||||
feedback
|
|
Maybe this will help you. It's a similar request made by another member of stack overflow. | |||
|
feedback
|