Skip to content

Instantly share code, notes, and snippets.

@mkows
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkows/55dce4914c901650ee0a to your computer and use it in GitHub Desktop.
Save mkows/55dce4914c901650ee0a to your computer and use it in GitHub Desktop.
Scala Test - IntelliJ Template
#if ((${PACKAGE_NAME} && ${PACKAGE_NAME} != ""))package ${PACKAGE_NAME} #end
import org.mockito.Mockito._
import org.mockito.Matchers._
import org.scalatest.concurrent.ScalaFutures
import org.scalatest.mock.MockitoSugar
import org.scalatest.{Matchers, FunSpec}
class ${NAME} extends FunSpec with Matchers with MockitoSugar with ScalaFutures {
describe("_") {
it("_") {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment