org.scalatest

funsuite

package funsuite

Visibility
  1. Public
  2. All

Type Members

  1. abstract class AnyFunSuite extends AnyFunSuiteLike

    A suite of tests in which each test is represented as a function value.

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

    Implementation trait for class AnyFunSpec, which facilitates a “behavior-driven” style of development (BDD), in which tests are combined with text that specifies the behavior the tests verify.

  3. abstract class AsyncFunSuite extends AsyncFunSuiteLike

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

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

    Implementation trait for class AsyncFunSuite, which represents a suite of tests in which each test is represented as a function value.

  5. abstract class FixtureAnyFunSuite extends FixtureAnyFunSuiteLike

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

  6. trait FixtureAnyFunSuiteLike extends fixture.TestSuite with fixture.TestRegistration with Informing with Notifying with Alerting with Documenting

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

  7. trait FixtureAsyncFunSuite extends FixtureAsyncFunSuiteLike with Informing with Notifying with Alerting with Documenting

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

  8. trait FixtureAsyncFunSuiteLike extends fixture.AsyncTestSuite with fixture.AsyncTestRegistration with Informing with Notifying with Alerting with Documenting

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

Ungrouped