I want to use AkkaSpec in (Akka 2.3.14) I'm trying to make TCP-file-IO using actor, sbt, intellij.
I wrote the dependency in build.sbt like below code
libraryDependencies ++= Seq( "com.typesafe.akka" %% "akka-testkit" % "2.3.14", )
They can import "akka.testkit" but when I "import akka.testkit.AkkaSpec" in my scala file, it can't.
How to use AkkaSpec in akka??? Please help me. Thx.