Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package scalatest

    ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter.

    ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter.

    Definition Classes
    org
  • package compatible
    Definition Classes
    scalatest
  • package concurrent

    Classes, traits, and objects related to testing asynchronous and multi-threaded behavior.

    Classes, traits, and objects related to testing asynchronous and multi-threaded behavior.

    This package is released as part of the scalatest-core module.

    Definition Classes
    scalatest
  • package diagrams

    A single traits and companion object that provides a assertions that draw code diagrams on failure.

    A single traits and companion object that provides a assertions that draw code diagrams on failure.

    This package is released as the scalatest-diagrams module.

    Definition Classes
    scalatest
  • package enablers

    Classes, traits, and objects for typeclasses that enable ScalaTest's DSLs.

    Classes, traits, and objects for typeclasses that enable ScalaTest's DSLs.

    This package is released as part of the scalatest-core module.

    Definition Classes
    scalatest
  • package events

    Classes for events sent to the org.scalatest.Reporter to report the results of running tests.

    Classes for events sent to the org.scalatest.Reporter to report the results of running tests.

    This package is released as part of the scalatest-core module.

    Definition Classes
    scalatest
  • package exceptions

    Classes and traits for exceptions thrown by ScalaTest.

    Classes and traits for exceptions thrown by ScalaTest.

    This package is released as part of the scalatest-core module.

    Definition Classes
    scalatest
  • package featurespec

    Classes and traits for ScalaTest's FeatureSpec style.

    Classes and traits for ScalaTest's FeatureSpec style.

    This package is released as the scalatest-featurespec module.

    Definition Classes
    scalatest
  • package fixture

    Classes and traits supporting ScalaTest's "fixture" style traits, which allow you to pass fixture objects into tests.

    Classes and traits supporting ScalaTest's "fixture" style traits, which allow you to pass fixture objects into tests.

    This package is released as part of the scalatest-core module.

    Definition Classes
    scalatest
  • AsyncConfigMapFixture
  • AsyncTestDataFixture
  • ConfigMapFixture
  • NoArg
  • TestDataFixture
  • UnitFixture
  • package flatspec

    Classes and traits for ScalaTest's FlatSpec style.

    Classes and traits for ScalaTest's FlatSpec style.

    This package is released as the scalatest-flatspec module.

    Definition Classes
    scalatest
  • package freespec

    Classes and traits for ScalaTest's FreeSpec style.

    Classes and traits for ScalaTest's FreeSpec style.

    This package is released as the scalatest-freespec module.

    Definition Classes
    scalatest
  • package funspec

    Classes and traits for ScalaTest's FunSpec style.

    Classes and traits for ScalaTest's FunSpec style.

    This package is released as the scalatest-funspec module.

    Definition Classes
    scalatest
  • package funsuite

    Classes and traits for ScalaTest's FunSuite style.

    Classes and traits for ScalaTest's FunSuite style.

    This package is released as the scalatest-funsuite module.

    Definition Classes
    scalatest
  • package matchers

    Classes and traits for matchers.

    Classes and traits for matchers.

    This package is released as part of the scalatest-matchers-core module.

    Definition Classes
    scalatest
  • package path

    ScalaTest's old path package that contains deprecated aliases for path style traits.

    ScalaTest's old path package that contains deprecated aliases for path style traits.

    Definition Classes
    scalatest
  • package prop
    Definition Classes
    scalatest
  • package propspec

    Classes and traits for ScalaTest's PropSpec style.

    Classes and traits for ScalaTest's PropSpec style.

    This package is released as the scalatest-propspec module.

    Definition Classes
    scalatest
  • package refspec

    Classes and traits for ScalaTest's RefSpec style.

    Classes and traits for ScalaTest's RefSpec style.

    This package is released as the scalatest-refspec module.

    Definition Classes
    scalatest
  • package tagobjects

    Singleton-object versions of ScalaTest's built-in tags.

    Singleton-object versions of ScalaTest's built-in tags.

    This package is released as part of the scalatest-core module.

    Definition Classes
    scalatest
  • package tags
    Definition Classes
    scalatest
  • package time

    Classes, traits, and objects for ScalaTest's time DSL.

    Classes, traits, and objects for ScalaTest's time DSL.

    This package is released as part of the scalatest-core module.

    Definition Classes
    scalatest
  • package tools

    Tools for running ScalaTest.

    Tools for running ScalaTest.

    This package is released as part of the scalatest-core module.

    Definition Classes
    scalatest
  • package verbs

    Classes and traits that support ScalaTest DSLs.

    Classes and traits that support ScalaTest DSLs.

    This package is released as part of the scalatest-core module.

    Definition Classes
    scalatest
  • package words

    A deprecated package that contained support for ScalaTest DSLs.

    A deprecated package that contained support for ScalaTest DSLs.

    Definition Classes
    scalatest
  • package wordspec

    Classes and traits for ScalaTest's WordSpec style.

    Classes and traits for ScalaTest's WordSpec style.

    This package is released as the scalatest-wordspec module.

    Definition Classes
    scalatest

package fixture

Classes and traits supporting ScalaTest's "fixture" style traits, which allow you to pass fixture objects into tests.

This package is released as part of the scalatest-core module.

Source
package.scala
Linear Supertypes
AnyRef, Any

Type Members

  1. trait AsyncConfigMapFixture extends AnyRef

    Trait that when mixed into a FixtureAsyncTestSuite passes the config map passed to runTest as a fixture into each test.

    Trait that when mixed into a FixtureAsyncTestSuite passes the config map passed to runTest as a fixture into each test.

    Here's an example in which tests just check to make sure "hello" and "world" are defined keys in the config map:

    package org.scalatest.examples.fixture.configmapfixture
    
    import org.scalatest._
    class ExampleAsyncSpec extends fixture.AsyncFlatSpec with fixture.AsyncConfigMapFixture with Matchers {
    "The config map" should "contain hello" in { configMap => // Use the configMap passed to runTest in the test configMap should contain key "hello" }
    it should "contain world" in { configMap => configMap should contain key "world" } }

    If you run this class without defining "hello" and "world" in the confg map, the tests will fail:

    scala> org.scalatest.run(new ExampleSpec)
    ExampleSpec:
    The config map
    - should contain hello *** FAILED ***
      Map() did not contain key "hello" (:20)
    - should contain world *** FAILED ***
      Map() did not contain key "world" (:24)
    

    If you do define "hello" and "world" keys in the confg map, the tests will success:

    scala> org.scalatest.run(new ExampleSpec, configMap = Map("hello" -> "hi", "world" -> "globe"))
    ExampleSpec:
    The config map
    - should contain hello
    - should contain world
    

  2. trait AsyncTestDataFixture extends AnyRef

    Trait that when mixed into a FixtureAsyncTestSuite passes the TestData passed to withFixture as a fixture into each test.

    Trait that when mixed into a FixtureAsyncTestSuite passes the TestData passed to withFixture as a fixture into each test.

    For example, here's how you could access the test's name in each test using AsyncTestDataFixture:

    package org.scalatest.examples.fixture.testdatafixture
    
    import org.scalatest._
    class ExampleAsyncSpec extends fixture.AsyncFlatSpec with fixture.AsyncTestDataFixture {
    "Accessing the test data" should "be easy!" in { td => assert(td.name == "Accessing the test data should be easy!") }
    it should "be fun!" in { td => assert(td.name == "Accessing the test data should be fun!") } }

  3. trait ConfigMapFixture extends AnyRef

    Trait that when mixed into a FixtureSuite passes the config map passed to runTest as a fixture into each test.

    Trait that when mixed into a FixtureSuite passes the config map passed to runTest as a fixture into each test.

    Here's an example in which tests just check to make sure "hello" and "world" are defined keys in the config map:

    package org.scalatest.examples.fixture.configmapfixture
    
    import org.scalatest._
    class ExampleSpec extends fixture.FlatSpec with fixture.ConfigMapFixture with Matchers {
    "The config map" should "contain hello" in { configMap => // Use the configMap passed to runTest in the test configMap should contain key "hello" }
    it should "contain world" in { configMap => configMap should contain key "world" } }

    If you run this class without defining "hello" and "world" in the confg map, the tests will fail:

    scala> org.scalatest.run(new ExampleSpec)
    ExampleSpec:
    The config map
    - should contain hello *** FAILED ***
      Map() did not contain key "hello" (:20)
    - should contain world *** FAILED ***
      Map() did not contain key "world" (:24)
    

    If you do define "hello" and "world" keys in the confg map, the tests will success:

    scala> org.scalatest.run(new ExampleSpec, configMap = Map("hello" -> "hi", "world" -> "globe"))
    ExampleSpec:
    The config map
    - should contain hello
    - should contain world
    

  4. trait NoArg extends DelayedInit with () => Unit

    A function that takes no parameters (i.e., a Function0 or "no-arg" function) and results in Unit, which when invoked executes the body of the constructor of the class into which this trait is mixed.

    A function that takes no parameters (i.e., a Function0 or "no-arg" function) and results in Unit, which when invoked executes the body of the constructor of the class into which this trait is mixed.

    This trait extends DelayedInit and defines a delayedInit method that saves the body of the constructor (passed to delayedInit) for later execution when apply is invoked.

    This trait is somewhat magical and therefore may be challenging for your collegues to understand, so please use it as a last resort only when the simpler options described in the "shared fixtures" section of your chosen style trait won't do the job. NoArg is intended to address a specific use case that will likely be rare, and is unlikely to be useful outside of its intended use case, but it is quite handy for its intended use case (described in the next paragraph). One potential gotcha, for example, is that a subclass's constructor body could in theory be executed multiple times by simply invoking apply multiple times. In the intended use case for this trait, however, the body will be executed only once.

    The intended use case for this method is (relatively rare) situations in which you want to extend a different instance of the same class for each test, with the body of the test inheriting the members of that class, and with code executed before and/or after the body of the test.

    For example, Akka's TestKit class takes an ActorSystem, which must have a unique name. To run a suite of tests in parallel, each test must get its own ActorSystem, to ensure the tests run in isolation. At the end of each test, the ActorSystem must be shutdown. With NoArg, you can achieve this by first defining a class that extends TestKit and mixes in NoArg. Here's an example taken with permission from the book Akka Concurrency, by Derek Wyatt:

    import akka.actor.ActorSystem
    import akka.testkit.{TestKit, ImplicitSender}
    import java.util.concurrent.atomic.AtomicInteger
    import org.scalatest.fixture.NoArg
    
    object ActorSys { val uniqueId = new AtomicInteger(0) }
    class ActorSys(name: String) extends TestKit(ActorSystem(name)) with ImplicitSender with NoArg {
    def this() = this( "TestSystem%05d".format( ActorSys.uniqueId.getAndIncrement()))
    def shutdown(): Unit = system.shutdown()
    override def apply() { try super.apply() finally shutdown() } }

    Given this implementation of ActorSys, which will invoke shutdown after the constructor code is executed, you can run each test in a suite in a subclass of TestKit, giving each test's TestKit an ActorSystem with a unique name, allowing you to safely run those tests in parallel. Here's an example from Akka Concurrency:

    class MyActorSpec extends fixture.WordSpec
            with Matchers
            with UnitFixture
            with ParallelTestExecution {
    
    def makeActor(): ActorRef = system.actorOf(Props[MyActor], "MyActor")
    "My Actor" should { "throw when made with the wrong name" in new ActorSys { an [Exception] should be thrownBy { // use a generated name val a = system.actorOf(Props[MyActor]) } } "construct without exception" in new ActorSys { val a = makeActor() // The throw will cause the test to fail } "respond with a Pong to a Ping" in new ActorSys { val a = makeActor() a ! Ping expectMsg(Pong) } } }

    UnitFixture is used in this example, because in this case, the fixture.WordSpec feature enabling tests to be defined as functions from fixture objects of type FixtureParam to Unit is not being used. Rather, only the secondary feature that enables tests to be defined as functions from no parameters to Unit is being used. This secondary feature is described in the second-to-last paragraph on the main Scaladoc documentation of fixture.WordSpec, which says:

    If a test doesn't need the fixture, you can indicate that by providing a no-arg instead of a one-arg function, ... In other words, instead of starting your function literal with something like “db =>”, you'd start it with “() =>”. For such tests, runTest will not invoke withFixture(OneArgTest). It will instead directly invoke withFixture(NoArgTest).

    Since FixtureParam is unused in this use case, it could be anything. Making it Unit will hopefully help readers more easily recognize that it is not being used.

    Note: As of Scala 2.11, DelayedInit (which is used by NoArg) has been deprecated, to indicate it is buggy and should be avoided if possible. Those in charge of the Scala compiler and standard library have promised that DelayedInit will not be removed from Scala unless an alternate way to achieve the same goal is provided. Thus it should be safe to use NoArg, but if you'd rather not you can achieve the same effect with a bit more boilerplate by extending (() => Unit) instead of NoArg and placing your code in an explicit body method. Here's an example:

    import akka.actor.ActorSystem
    import akka.testkit.{TestKit, ImplicitSender}
    import java.util.concurrent.atomic.AtomicInteger
    import org.scalatest.fixture.NoArg
    
    object ActorSys { val uniqueId = new AtomicInteger(0) }
    class ActorSys(name: String) extends TestKit(ActorSystem(name)) with ImplicitSender with (() => Unit) {
    def this() = this( "TestSystem%05d".format( ActorSys.uniqueId.getAndIncrement()))
    def shutdown(): Unit = system.shutdown() def body(): Unit
    override def apply() = { try body() finally shutdown() } }

    Using this version of ActorSys will require an explicit body method in the tests:

    class MyActorSpec extends fixture.WordSpec
            with Matchers
            with UnitFixture
            with ParallelTestExecution {
    
    def makeActor(): ActorRef = system.actorOf(Props[MyActor], "MyActor")
    "My Actor" should { "throw when made with the wrong name" in new ActorSys { def body() = an [Exception] should be thrownBy { // use a generated name val a = system.actorOf(Props[MyActor]) } } "construct without exception" in new ActorSys { def body() = { val a = makeActor() // The throw will cause the test to fail } } "respond with a Pong to a Ping" in new ActorSys { def body() = { val a = makeActor() a ! Ping expectMsg(Pong) } } } }

  5. trait TestDataFixture extends AnyRef

    Trait that when mixed into a FixtureSuite passes the TestData passed to withFixture as a fixture into each test.

    Trait that when mixed into a FixtureSuite passes the TestData passed to withFixture as a fixture into each test.

    For example, here's how you could access the test's name in each test using TestDataFixture:

    package org.scalatest.examples.fixture.testdatafixture
    
    import org.scalatest._
    class ExampleSpec extends fixture.FlatSpec with fixture.TestDataFixture {
    "Accessing the test data" should "be easy!" in { td => assert(td.name == "Accessing the test data should be easy!") }
    it should "be fun!" in { td => assert(td.name == "Accessing the test data should be fun!") } }

  6. trait UnitFixture extends AnyRef

    Trait that when mixed into a FixtureSuite passes the unit value as a fixture into each test.

    Trait that when mixed into a FixtureSuite passes the unit value as a fixture into each test.

    Since a unit value is unlikely to be of much use to a test, this trait is useful when the unit value fixture is actually never passed into any tests. Instead each test in the FixtureSuite is defined as a no-arg function; no tests are defined as one-arg functions. This should be quite rare, but occasionally can be useful. For an example, see the main documentation for trait NoArg.

Deprecated Type Members

  1. type AsyncFeatureSpec = FixtureAsyncFeatureSpec

    The name org.scalatest.fixture.AsyncFeatureSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.featurespec.FixtureAsyncFeatureSpec, instead.

    The name org.scalatest.fixture.AsyncFeatureSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.featurespec.FixtureAsyncFeatureSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncFeatureSpec trait has been moved and renamed. Please use org.scalatest.featurespec.FixtureAsyncFeatureSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  2. type AsyncFeatureSpecLike = FixtureAsyncFeatureSpecLike

    The name org.scalatest.fixture.AsyncFeatureSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.featurespec.FixtureAsyncFeatureSpecLike, instead.

    The name org.scalatest.fixture.AsyncFeatureSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.featurespec.FixtureAsyncFeatureSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncFeatureSpecLike trait has been moved and renamed. Please use org.scalatest.featurespec.FixtureAsyncFeatureSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  3. type AsyncFlatSpec = FixtureAsyncFlatSpec

    The name org.scalatest.fixture.AsyncFlatSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.flatspec.FixtureAsyncFlatSpec, instead.

    The name org.scalatest.fixture.AsyncFlatSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.flatspec.FixtureAsyncFlatSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncFlatSpec trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAsyncFlatSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  4. type AsyncFlatSpecLike = FixtureAsyncFlatSpecLike

    The name org.scalatest.fixture.AsyncFlatSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.flatspec.FixtureAsyncFlatSpecLike, instead.

    The name org.scalatest.fixture.AsyncFlatSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.flatspec.FixtureAsyncFlatSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncFlatSpecLike trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAsyncFlatSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  5. type AsyncFreeSpec = FixtureAsyncFreeSpec

    The name org.scalatest.fixture.AsyncFreeSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.freespec.FixtureAsyncFreeSpec, instead.

    The name org.scalatest.fixture.AsyncFreeSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.freespec.FixtureAsyncFreeSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncFreeSpec trait has been moved and renamed. Please use org.scalatest.freespec.FixtureAsyncFreeSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  6. type AsyncFreeSpecLike = FixtureAsyncFreeSpecLike

    The name org.scalatest.fixture.AsyncFreeSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.freespec.FixtureAsyncFreeSpecLike, instead.

    The name org.scalatest.fixture.AsyncFreeSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.freespec.FixtureAsyncFreeSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncFreeSpecLike trait has been moved and renamed. Please use org.scalatest.freespec.FixtureAsyncFreeSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  7. type AsyncFunSpec = FixtureAsyncFunSpec

    The name org.scalatest.fixture.AsyncFunSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funspec.FixtureAsyncFunSpec, instead.

    The name org.scalatest.fixture.AsyncFunSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funspec.FixtureAsyncFunSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncFunSpec trait has been moved and renamed. Please use org.scalatest.funspec.FixtureAsyncFunSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  8. type AsyncFunSpecLike = FixtureAsyncFunSpecLike

    The name org.scalatest.fixture.AsyncFunSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funspec.FixtureAsyncFunSpecLike, instead.

    The name org.scalatest.fixture.AsyncFunSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funspec.FixtureAsyncFunSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncFunSpecLike trait has been moved and renamed. Please use org.scalatest.funspec.FixtureAsyncFunSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  9. type AsyncFunSuite = FixtureAsyncFunSuite

    The name org.scalatest.fixture.AsyncFunSuite has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funsuite.FixtureAsyncFunSuite, instead.

    The name org.scalatest.fixture.AsyncFunSuite has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funsuite.FixtureAsyncFunSuite, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncFunSuite trait has been moved and renamed. Please use org.scalatest.funsuite.FixtureAsyncFunSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  10. type AsyncFunSuiteLike = FixtureAsyncFunSuiteLike

    The name org.scalatest.fixture.AsyncFunSuiteLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funsuite.FixtureAsyncFunSuiteLike, instead.

    The name org.scalatest.fixture.AsyncFunSuiteLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funsuite.FixtureAsyncFunSuiteLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncFunSuiteLike trait has been moved and renamed. Please use org.scalatest.funsuite.FixtureAsyncFunSuiteLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  11. type AsyncTestRegistration = FixtureAsyncTestRegistration

    The name org.scalatest.fixture.AsyncTestRegistration has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.FixtureAsyncTestRegistration, instead.

    The name org.scalatest.fixture.AsyncTestRegistration has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.FixtureAsyncTestRegistration, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncTestRegistration trait has been moved and renamed. Please use org.scalatest.FixtureAsyncTestRegistration instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  12. type AsyncTestSuite = FixtureAsyncTestSuite

    The name org.scalatest.fixture.AsyncTestSuite has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.FixtureAsyncTestSuite, instead.

    The name org.scalatest.fixture.AsyncTestSuite has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.FixtureAsyncTestSuite, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncTestSuite trait has been moved and renamed. Please use org.scalatest.FixtureAsyncTestSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  13. type AsyncWordSpec = FixtureAsyncWordSpec

    The name org.scalatest.fixture.AsyncWordSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.wordspec.FixtureAsyncWordSpec, instead.

    The name org.scalatest.fixture.AsyncWordSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.wordspec.FixtureAsyncWordSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncWordSpec trait has been moved and renamed. Please use org.scalatest.wordspec.FixtureAsyncWordSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  14. type AsyncWordSpecLike = FixtureAsyncWordSpecLike

    The name org.scalatest.fixture.AsyncWordSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.wordspec.FixtureAsyncWordSpecLike, instead.

    The name org.scalatest.fixture.AsyncWordSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.wordspec.FixtureAsyncWordSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.AsyncWordSpecLike trait has been moved and renamed. Please use org.scalatest.wordspec.FixtureAsyncWordSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  15. type FeatureSpec = FixtureAnyFeatureSpec

    The name org.scalatest.fixture.FeatureSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.featurespec.FixtureAnyFeatureSpec, instead.

    The name org.scalatest.fixture.FeatureSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.featurespec.FixtureAnyFeatureSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.FeatureSpec trait has been moved and renamed. Please use org.scalatest.featurespec.FixtureAnyFeatureSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  16. type FeatureSpecLike = FixtureAnyFeatureSpecLike

    The name org.scalatest.fixture.FeatureSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.featurespec.FixtureAnyFeatureSpecLike, instead.

    The name org.scalatest.fixture.FeatureSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.featurespec.FixtureAnyFeatureSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.FeatureSpecLike trait has been moved and renamed. Please use org.scalatest.featurespec.FixtureAnyFeatureSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  17. type FlatSpec = FixtureAnyFlatSpec

    The name org.scalatest.fixture.FlatSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.flatspec.FixtureAnyFlatSpec, instead.

    The name org.scalatest.fixture.FlatSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.flatspec.FixtureAnyFlatSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.FlatSpec trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAnyFlatSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  18. type FlatSpecLike = FixtureAnyFlatSpecLike

    The name org.scalatest.fixture.FlatSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.flatspec.FixtureAnyFlatSpecLike, instead.

    The name org.scalatest.fixture.FlatSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.flatspec.FixtureAnyFlatSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.FlatSpecLike trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAnyFlatSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  19. type FreeSpec = FixtureAnyFreeSpec

    The name org.scalatest.fixture.FreeSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.freespec.FixtureAnyFreeSpec, instead.

    The name org.scalatest.fixture.FreeSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.freespec.FixtureAnyFreeSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.FreeSpec trait has been moved and renamed. Please use org.scalatest.freespec.FixtureAnyFreeSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  20. type FreeSpecLike = FixtureAnyFreeSpecLike

    The name org.scalatest.fixture.FreeSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.freespec.FixtureAnyFreeSpecLike, instead.

    The name org.scalatest.fixture.FreeSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.freespec.FixtureAnyFreeSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.FreeSpecLike trait has been moved and renamed. Please use org.scalatest.freespec.FixtureAnyFreeSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  21. type FunSpec = FixtureAnyFunSpec

    The name org.scalatest.fixture.FunSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funspec.FixtureAnyFunSpec, instead.

    The name org.scalatest.fixture.FunSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funspec.FixtureAnyFunSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.FunSpec trait has been moved and renamed. Please use org.scalatest.funspec.FixtureAnyFunSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  22. type FunSpecLike = FixtureAnyFunSpecLike

    The name org.scalatest.fixture.FunSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funspec.FixtureAnyFunSpecLike, instead.

    The name org.scalatest.fixture.FunSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funspec.FixtureAnyFunSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.FunSpecLike trait has been moved and renamed. Please use org.scalatest.funspec.FixtureAnyFunSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  23. type FunSuite = FixtureAnyFunSuite

    The name org.scalatest.fixture.FunSuite has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funsuite.FixtureAnyFunSuite, instead.

    The name org.scalatest.fixture.FunSuite has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funsuite.FixtureAnyFunSuite, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.FunSuite trait has been moved and renamed. Please use org.scalatest.funsuite.FixtureAnyFunSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  24. type FunSuiteLike = FixtureAnyFunSuiteLike

    The name org.scalatest.fixture.FunSuiteLikeXX has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funsuite.FixtureAnyFunSuiteLike, instead.

    The name org.scalatest.fixture.FunSuiteLikeXX has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.funsuite.FixtureAnyFunSuiteLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.FunSuiteLike trait has been moved and renamed. Please use org.scalatest.funsuite.FixtureAnyFunSuiteLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  25. type PropSpec = FixtureAnyPropSpec

    The name org.scalatest.fixture.PropSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.propspec.FixtureAnyPropSpec, instead.

    The name org.scalatest.fixture.PropSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.propspec.FixtureAnyPropSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.PropSpec trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAnyPropSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  26. type PropSpecLike = FixtureAnyPropSpecLike

    The name org.scalatest.fixture.PropSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.propspec.FixtureAnyPropSpecLike, instead.

    The name org.scalatest.fixture.PropSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.propspec.FixtureAnyPropSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.PropSpecLike trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAnyPropSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  27. type Suite = FixtureSuite

    The name org.scalatest.fixture.Suite has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.FixtureSuite, instead.

    The name org.scalatest.fixture.Suite has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.FixtureSuite, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.Suite trait has been moved and renamed. Please use org.scalatest.FixtureSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  28. type TestRegistration = FixtureTestRegistration

    The name org.scalatest.fixture.TestRegistration has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.FixtureTestRegistration, instead.

    The name org.scalatest.fixture.TestRegistration has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.FixtureTestRegistration, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.TestRegistration trait has been moved and renamed. Please use org.scalatest.FixtureTestRegistration instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  29. type TestSuite = FixtureTestSuite

    The name org.scalatest.fixture.TestSuite has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.FixtureTestSuite, instead.

    The name org.scalatest.fixture.TestSuite has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.FixtureTestSuite, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.TestSuite trait has been moved and renamed. Please use org.scalatest.FixtureTestSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  30. type WordSpec = FixtureAnyWordSpec

    The name org.scalatest.fixture.WordSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.wordspec.FixtureAnyWordSpec, instead.

    The name org.scalatest.fixture.WordSpec has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.wordspec.FixtureAnyWordSpec, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.WordSpec trait has been moved and renamed. Please use org.scalatest.wordspec.FixtureAnyWordSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

  31. type WordSpecLike = FixtureAnyWordSpecLike

    The name org.scalatest.fixture.WordSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.wordspec.FixtureAnyWordSpecLike, instead.

    The name org.scalatest.fixture.WordSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use its new name, org.scalatest.wordspec.FixtureAnyWordSpecLike, instead.

    This type has been renamed to support future modularization of ScalaTest.

    This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.0) The org.scalatest.fixture.WordSpecLike trait has been moved and renamed. Please use org.scalatest.wordspec.FixtureAnyWordSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x

Inherited from AnyRef

Inherited from Any

Ungrouped