org.scalatest

fixture

package fixture

Visibility
  1. Public
  2. All

Type Members

  1. trait ConfigMapFixture extends AnyRef

    Trait that when mixed into a FixtureSuite ensures the configMap passed to runTest is passed along as a fixture into each test.

  2. trait FixtureFeatureSpec extends FixtureSuite

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

  3. trait FixtureFlatSpec extends FixtureSuite with ShouldVerb with MustVerb with CanVerb

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

  4. trait FixtureFunSuite extends FixtureSuite

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

  5. trait FixtureSpec extends FixtureSuite

    A sister trait to org.scalatest.Spec, which passes a fixture object into each test.

  6. trait FixtureSuite extends Suite

    Suite that can pass a fixture object into its tests.

  7. trait FixtureWordSpec extends FixtureSuite with ShouldVerb with MustVerb with CanVerb

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

  8. trait MultipleFixtureFeatureSpec extends FixtureFeatureSpec with ConfigMapFixture

    A sister trait to org.scalatest.FeatureSpec that can pass multiple types of fixture objects into its tests.

  9. trait MultipleFixtureFlatSpec extends FixtureFlatSpec with ConfigMapFixture

    A sister trait to org.scalatest.FlatSpec that can pass multiple types of fixture objects into its tests.

  10. trait MultipleFixtureFunSuite extends FixtureFunSuite with ConfigMapFixture

    A sister trait to org.scalatest.FunSuite that can pass multiple types of fixture objects into its tests.

  11. trait MultipleFixtureSpec extends FixtureSpec with ConfigMapFixture

    A sister trait to org.scalatest.Spec that can pass multiple types of fixture objects into its tests.

  12. trait MultipleFixtureWordSpec extends FixtureWordSpec with ConfigMapFixture

    A sister trait to org.scalatest.WordSpec that can pass multiple types of fixture objects into its tests.