org.scalatest

freespec

package freespec

Classes and traits for ScalaTest's FreeSpec style.

This package is released as the scalatest-freespec module.

Source
package.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. freespec
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class AnyFreeSpec extends AnyFreeSpecLike

    Facilitates a “behavior-driven” style of development (BDD), in which tests are nested inside text clauses denoted with the dash operator (-).

  2. trait AnyFreeSpecLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class AnyFreeSpec, which facilitates a “behavior-driven” style of development (BDD), in which tests are nested inside text clauses denoted with the dash operator (-).

  3. abstract class AsyncFreeSpec extends AsyncFreeSpecLike

    Enables testing of asynchronous code without blocking, using a style consistent with traditional AnyFreeSpec tests.

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

    Implementation trait for class AsyncFreeSpec, which facilitates a “behavior-driven” style of development (BDD), in which tests are nested inside text clauses denoted with the dash operator (-).

  5. abstract class FixtureAnyFreeSpec extends FixtureAnyFreeSpecLike

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

  6. trait FixtureAnyFreeSpecLike extends FixtureTestSuite with FixtureTestRegistration with Informing with Notifying with Alerting with Documenting

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

  7. abstract class FixtureAsyncFreeSpec extends FixtureAsyncFreeSpecLike

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

  8. trait FixtureAsyncFreeSpecLike extends FixtureAsyncTestSuite with FixtureAsyncTestRegistration with Informing with Notifying with Alerting with Documenting

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

  9. class PathAnyFreeSpec extends PathAnyFreeSpecLike

    A sister class to org.scalatest.freespec.PathAnyFreeSpec that isolates tests by running each test in its own instance of the test class, and for each test, only executing the path leading to that test.

  10. trait PathAnyFreeSpecLike extends Suite with OneInstancePerTest with Informing with Notifying with Alerting with Documenting

    Implementation trait for class PathAnyFreeSpec, which is a sister class to org.scalatest.freespec.AnyFreeSpec that isolates tests by running each test in its own instance of the test class, and for each test, only executing the path leading to that test.

Inherited from AnyRef

Inherited from Any

Ungrouped