
org.scalatra.test.specs2.BaseScalatraSpec.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra-specs2-javax_3 Show documentation
Show all versions of scalatra-specs2-javax_3 Show documentation
Specs2 support for the Scalatra test framework
The newest version!
package org.scalatra
package test
package specs2
import org.specs2.specification.BeforeAfterAll
/**
* A base specification structure that starts the tester before the
* specification and stops it afterward. Clients probably want to extend
* ScalatraSpec or MutableScalatraSpec.
*/
trait BaseScalatraSpec extends BeforeAfterAll with ScalatraTests {
def beforeAll() = start()
def afterAll() = stop()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy