If you use FunSuite , you will receive an error message: "FunSuite must be a sign that needs to be mixed." If you want to use it, as in the Akka documentation, but replace WordSpec for the FunSuite test, use FunSuiteLike . Like this:
class ComponentLogicTest() extends TestKit(ActorSystem("ComponentLogicTest")) with ImplicitSender with FunSuiteLike with Matchers with BeforeAndAfterAll {
source
share