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/41b52cb78a40c23e7bf0 to your computer and use it in GitHub Desktop.
Save mkows/41b52cb78a40c23e7bf0 to your computer and use it in GitHub Desktop.
Scala Spec - 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, WordSpecLike}
class ${NAME} extends WordSpecLike with Matchers with MockitoSugar with ScalaFutures {
def fixture = new {
}
"${NAME}" should {
"" in {
val f = fixture
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment