org.scalatest

funspec

package funspec

Classes and traits for ScalaTest's FunSpec style.

This package is released as the scalatest-funspec module.

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

Type Members

  1. class AnyFunSpec extends AnyFunSpecLike

    Facilitates a “behavior-driven” style of development (BDD), in which tests are combined with text that specifies the behavior the tests verify.

  2. trait AnyFunSpecLike 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 AsyncFunSpec extends AsyncFunSpecLike

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

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

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

  5. abstract class FixtureAnyFunSpec extends FixtureAnyFunSpecLike

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

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

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

  7. abstract class FixtureAsyncFunSpec extends FixtureAsyncFunSpecLike

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

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

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

  9. abstract class PathAnyFunSpec extends PathAnyFunSpecLike

    A sister class to org.scalatest.funspec.AnyFunSpec 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 PathAnyFunSpecLike extends Suite with OneInstancePerTest with Informing with Notifying with Alerting with Documenting

    Implementation trait for class Path.FunSpec, which is a sister class to org.scalatest.funspec.AnyFunSpec 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