org.scalatest

fixture

package fixture

Visibility
  1. Public
  2. All

Type Members

  1. trait AsyncConfigMapFixture extends AnyRef

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

  2. abstract class AsyncFeatureSpec extends AsyncFeatureSpecLike

    A sister class to org.scalatest.AsyncFeatureSpec that can pass a fixture object into its tests.

  3. trait AsyncFeatureSpecLike extends AsyncTestSuite with AsyncTestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.AsyncFeatureSpec, which is a sister class to org.scalatest.AsyncFeatureSpec that can pass a fixture object into its tests.

  4. abstract class AsyncFlatSpec extends AsyncFlatSpecLike

    A sister class to org.scalatest.AsyncFlatSpec that can pass a fixture object into its tests.

  5. trait AsyncFlatSpecLike extends AsyncTestSuite with AsyncTestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.AsyncFlatSpec, which is a sister class to org.scalatest.AsyncFlatSpec that can pass a fixture object into its tests.

  6. abstract class AsyncFreeSpec extends AsyncFreeSpecLike

    A sister class to org.scalatest.AsyncFunSpec that can pass a fixture object into its tests.

  7. trait AsyncFreeSpecLike extends AsyncTestSuite with AsyncTestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.AsyncFreeSpec, which is a sister class to org.scalatest.AsyncFreeSpec that can pass a fixture object into its tests.

  8. abstract class AsyncFunSpec extends AsyncFunSpecLike

    A sister class to org.scalatest.AsyncFunSpec that can pass a fixture object into its tests.

  9. trait AsyncFunSpecLike extends AsyncTestSuite with AsyncTestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.AsyncFunSpec, which is a sister class to org.scalatest.AsyncFunSpec that can pass a fixture object into its tests.

  10. abstract class AsyncFunSuite extends AsyncFunSuiteLike

    A sister class to org.scalatest.AsyncFunSuite that can pass a fixture object into its tests.

  11. trait AsyncFunSuiteLike extends AsyncTestSuite with AsyncTestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.AsyncFunSuite, which is a sister class to org.scalatest.AsyncFunSuite that can pass a fixture object into its tests.

  12. trait AsyncTestDataFixture extends AnyRef

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

  13. trait AsyncTestRegistration extends AnyRef

    Trait declaring methods that can be used to register test functions that accept a fixture parameter and have result type Future[Assertion].

  14. trait AsyncTestSuite extends Suite with scalatest.AsyncTestSuite

    The base trait of ScalaTest's "fixture" async testing styles, which enable you to pass fixture objects into tests.

  15. abstract class AsyncWordSpec extends AsyncWordSpecLike

    A sister class to org.scalatest.AsyncWordSpec that can pass a fixture object into its tests.

  16. trait AsyncWordSpecLike extends AsyncTestSuite with AsyncTestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.AsyncWordSpec, which is a sister class to org.scalatest.AsyncWordSpec that can pass a fixture object into its tests.

  17. trait ConfigMapFixture extends AnyRef

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

  18. abstract class FeatureSpec extends FeatureSpecLike

    A sister class to org.scalatest.FeatureSpec that can pass a fixture object into its tests.

  19. trait FeatureSpecLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.FeatureSpec, which is a sister class to org.scalatest.FeatureSpec that can pass a fixture object into its tests.

  20. abstract class FlatSpec extends FlatSpecLike

    A sister class to org.scalatest.FlatSpec that can pass a fixture object into its tests.

  21. trait FlatSpecLike extends TestSuite with TestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.FlatSpec, which is a sister class to org.scalatest.FlatSpec that can pass a fixture object into its tests.

  22. abstract class FreeSpec extends FreeSpecLike

    A sister class to org.scalatest.FreeSpec that can pass a fixture object into its tests.

  23. trait FreeSpecLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.FreeSpec, which is a sister class to org.scalatest.FreeSpec that can pass a fixture object into its tests.

  24. abstract class FunSpec extends FunSpecLike

    A sister class to org.scalatest.FunSpec that can pass a fixture object into its tests.

  25. trait FunSpecLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.FunSpec, which is a sister class to org.scalatest.FunSpec that can pass a fixture object into its tests.

  26. abstract class FunSuite extends FunSuiteLike

    A sister class to org.scalatest.FunSuite that can pass a fixture object into its tests.

  27. trait FunSuiteLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.FunSuite, which is a sister class to org.scalatest.FunSuite that can pass a fixture object into its tests.

  28. 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.

  29. abstract class PropSpec extends PropSpecLike

    A sister class to org.scalatest.PropSpec that can pass a fixture object into its tests.

  30. trait PropSpecLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.PropSpec, which is a sister class to org.scalatest.PropSpec that can pass a fixture object into its tests.

  31. trait Suite extends scalatest.Suite

    Base trait for a family of style traits that can pass a fixture object into tests.

  32. trait TestDataFixture extends AnyRef

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

  33. trait TestRegistration extends AnyRef

    Trait declaring methods that can be used to register test functions that accept a fixture parameter and have any result type.

  34. trait TestSuite extends Suite with scalatest.TestSuite

  35. trait UnitFixture extends AnyRef

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

  36. abstract class WordSpec extends WordSpecLike

    A sister class to org.scalatest.WordSpec that can pass a fixture object into its tests.

  37. trait WordSpecLike extends TestSuite with TestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting

    Implementation trait for class fixture.WordSpec, which is a sister class to org.scalatest.WordSpec that can pass a fixture object into its tests.

  38. abstract class Spec extends SpecLike

    Class fixture.Spec has been deprecated and will be removed in a future version of ScalaTest. Please use org.scalatest.fixture.FunSpec instead.

  39. trait SpecLike extends TestSuite with Informing with Notifying with Alerting with Documenting

    Trait fixture.SpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use org.scalatest.fixture.FunSpec instead.

Ungrouped