Reputation: 13471
I´ve been looking for a BDD framework for Scala, I´ve found this one https://github.com/maiflai/gradle-scalatest but to be honest I dont know how to run the tests and also how apply pure BDD test into.
Anybody here that has used this one or maybe another one, could share his github BDD test and gradle build conf to see how it looks like?
Regards.
Upvotes: 1
Views: 447
Reputation: 8227
The link you provided is a method of getting scalatest working inside a gradle environment. Since Scala probably works better in the sbt environment, you may want to rethink that.
The real engine you are looking for is scalatest. Here is a short write up about scalatest using BDD terminology. The documentation on scalatest provides plenty of examples of running it, using a number of different paradigms.
Upvotes: 2