Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for JUnitRunner (0.1 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/test/ApplicationSpec.scala

    import org.apache.commons.lang.StringUtils
    import org.junit.runner.RunWith
    import org.scalatest.junit.JUnitRunner
    import org.scalatestplus.play.PlaySpec
    import org.scalatestplus.play.guice.GuiceOneAppPerSuite
    import play.api.http.Status
    import play.api.test.FakeRequest
    import play.api.test.Helpers._
    
    @RunWith(classOf[JUnitRunner])
    class ApplicationSpec extends PlaySpec with GuiceOneAppPerSuite {
    
      "Application" should {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/test/IntegrationSpec.scala

    import org.junit.runner.RunWith
    import org.scalatest.junit.JUnitRunner
    import org.scalatestplus.play._
    import org.scalatestplus.play.guice.GuiceOneServerPerTest
    
    @RunWith(classOf[JUnitRunner])
    class IntegrationSpec extends PlaySpec
      with OneBrowserPerTest
      with GuiceOneServerPerTest
      with HtmlUnitFactory
      with ServerProvider {
    
      "Application" should {
    
        "work from within a browser" in {
    
          go to ("http://localhost:" + port)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 518 bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaConcurrencyIntegrationTest.groovy

                    package ${project}
                    import org.scalatest.funsuite.AnyFunSuite
                    import org.junit.runner.RunWith
                    import org.scalatestplus.junit.JUnitRunner
    
                    @RunWith(classOf[JUnitRunner])
                    class ${project.toUpperCase()}Test extends AnyFunSuite {
                      test("always true") {
                          assert(true)
                      }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 16:10:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top