org

scalatest

package scalatest

ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter.

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

Type Members

  1. trait Alerter extends AnyRef

    Trait providing an apply method to which alert messages about a running suite of tests can be reported.

  2. trait Alerting extends AnyRef

    Trait that contains the alert method, which can be used to send an alert to the reporter.

  3. trait AppendedClues extends AnyRef

    Trait providing an implicit conversion that allows clues to be placed after a block of code.

  4. case class Args(reporter: Reporter, stopper: Stopper = Stopper.default, filter: Filter = Filter.default, configMap: ConfigMap = ConfigMap.empty, distributor: Option[Distributor] = scala.None, tracker: Tracker = Tracker.default, chosenStyles: Set[String] = scala.this.Predef.Set.empty[String], runTestInNewInstance: Boolean = false, distributedTestSorter: Option[DistributedTestSorter] = scala.None, distributedSuiteSorter: Option[DistributedSuiteSorter] = scala.None) extends Product with Serializable

    Arguments bundle passed to four of ScalaTest's lifecycle methods: run, runNestedSuites, runTests, and runTest.

  5. type Assertion = scalatest.compatible.Assertion

  6. trait Assertions extends TripleEquals

    Trait that contains ScalaTest's basic assertion methods.

  7. abstract class AsyncFeatureSpec extends AsyncFeatureSpecLike

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

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

    Implementation trait for class AsyncFeatureSpec, which represents a suite of tests in which each test represents one scenario of a feature.

  9. abstract class AsyncFlatSpec extends AsyncFlatSpecLike

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

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

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

  11. abstract class AsyncFreeSpec extends AsyncFreeSpecLike

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

  12. 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 (-).

  13. abstract class AsyncFunSpec extends AsyncFunSpecLike

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

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

  15. abstract class AsyncFunSuite extends AsyncFunSuiteLike

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

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

  17. trait AsyncTestRegistration extends AnyRef

    Trait declaring methods that can be used to register by-name test functions that have result type Future[Assertion].

  18. trait AsyncTestSuite extends Suite with RecoverMethods with CompleteLastly

    The base trait of ScalaTest's asynchronous testing styles, which defines a withFixture lifecycle method that accepts as its parameter a test function that returns a FutureOutcome.

  19. trait AsyncTestSuiteMixin extends SuiteMixin

    Trait defining abstract "lifecycle" methods that are implemented in AsyncTestSuite and can be overridden in stackable modification traits.

  20. abstract class AsyncWordSpec extends AsyncWordSpecLike

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

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

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

  22. trait BeforeAndAfter extends SuiteMixin

    Trait that can be mixed into suites that need code executed before and after running each test.

  23. trait BeforeAndAfterAll extends SuiteMixin

    Stackable trait that can be mixed into suites that need methods invoked before and after executing the suite.

  24. trait BeforeAndAfterAllConfigMap extends SuiteMixin

    Trait that can be mixed into suites that need methods that make use of the config map invoked before and/or after executing the suite.

  25. trait BeforeAndAfterEach extends SuiteMixin

    Stackable trait that can be mixed into suites that need code executed before and/or after running each test.

  26. trait BeforeAndAfterEachTestData extends SuiteMixin

    Stackable trait that can be mixed into suites that need code that makes use of test data (test name, tags, config map, etc.) executed before and/or after running each test.

  27. trait CancelAfterFailure extends TestSuiteMixin

    Trait that when mixed into a TestSuite cancels any remaining tests in that TestSuite instance after a test fails.

  28. case class Canceled(exception: TestCanceledException) extends Exceptional with Product with Serializable

    Outcome for a test that was canceled, containing an exception describing the cause of the cancelation.

  29. trait Checkpoints extends AnyRef

    Trait providing class Checkpoint, which enables multiple assertions to be performed within a test, with any failures accumulated and reported together at the end of the test.

  30. trait CompleteLastly extends AnyRef

    Trait that provides a complete-lastly construct, which ensures cleanup code in lastly is executed whether the code passed to complete completes abruptly with an exception or successfully results in a Future, FutureOutcome, or other type with an implicit Futuristic instance.

  31. final class CompositeStatus extends Status with Serializable

    Composite Status that aggregates its completion and failed states of set of other Statuses passed to its constructor.

  32. class ConfigMap extends Map[String, Any] with MapLike[String, Any, ConfigMap] with Serializable

    A map of configuration data.

  33. trait DiagrammedAssertions extends Assertions

    Sub-trait of Assertions that override assert and assume methods to include a diagram showing the values of expression in the error message when the assertion or assumption fails.

  34. trait DiagrammedExpr[T] extends AnyRef

    A trait that represent an expression recorded by DiagrammedExprMacro, which includes the following members:

  35. trait DistributedSuiteSorter extends AnyRef

    A sorter for the events of a run's distributed suites.

  36. trait DistributedTestSorter extends AnyRef

    A sorter for the events of a suite's distributed tests.

  37. trait Distributor extends AnyRef

    Trait whose instances facilitate parallel execution of Suites.

  38. class DoNotDiscover extends Annotation with Annotation with ClassfileAnnotation

  39. trait Documenter extends AnyRef

    Trait to which markup text tests can be reported.

  40. trait Documenting extends AnyRef

    Trait that contains a markup method, which can be used to send markup to the Reporter.

  41. final case class DynaTags(suiteTags: Map[String, Set[String]], testTags: Map[String, Map[String, Set[String]]]) extends Serializable with Product

    Dynamic tags for a run.

  42. trait EitherValues extends AnyRef

    Trait that provides an implicit conversion that adds left.value and right.value methods to Either, which will return the selected value of the Either if defined, or throw TestFailedException if not.

  43. case class Entry[K, V](key: K, value: V) extends Product with Serializable

    A case class implementation of java.util.Map.Entry to make it easier to test Java Maps with ScalaTest Matchers.

  44. sealed abstract class Exceptional extends Outcome

    Superclass for the two outcomes of running a test that contain an exception: Failed and Canceled.

  45. type Expectation = Fact

  46. trait Expectations extends AnyRef

  47. sealed abstract class Fact extends AnyRef

  48. case class Failed(exception: Throwable) extends Exceptional with Product with Serializable

    Outcome for a test that failed, containing an exception describing the cause of the failure.

  49. class FeatureSpec extends FeatureSpecLike

    A suite of tests in which each test represents one scenario of a feature.

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

    Implementation trait for class FeatureSpec, which represents a suite of tests in which each test represents one scenario of a feature.

  51. final class Filter extends Serializable

    Filter whose apply method determines which of the passed tests to run and ignore based on tags to include and exclude passed as as class parameters.

  52. class Finders extends Annotation with Annotation with ClassfileAnnotation

  53. trait FixtureContext extends scalatest.compatible.Assertion

    Marker trait for fixture-context objects, that enables them to be used in testing styles that require type Assertion

  54. class FlatSpec extends FlatSpecLike

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

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

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

  56. class FreeSpec extends FreeSpecLike

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

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

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

  58. class FunSpec extends FunSpecLike

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

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

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

  60. class FunSuite extends FunSuiteLike

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

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

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

  62. class FutureOutcome extends AnyRef

    Wrapper class for Future[Outcome] that presents a more convenient API for manipulation in withFixture methods in async styles.

  63. trait GivenWhenThen extends AnyRef

    Trait that contains methods named given, when, then, and and, which take a string message and implicit Informer, and forward the message to the informer.

  64. class Ignore extends Annotation with Annotation with ClassfileAnnotation

  65. trait Informer extends AnyRef

    Trait to which custom information about a running suite of tests can be reported.

  66. trait Informing extends AnyRef

    Trait that contains the info method, which can be used to send info to the reporter.

  67. trait Inside extends AnyRef

    Trait containing the inside construct, which allows you to make statements about nested object graphs using pattern matching.

  68. trait Inspectors extends AnyRef

    Provides nestable inspector methods (or just inspectors) that enable assertions to be made about collections.

  69. class LogicFeatureSpec extends LogicFeatureSpecLike

    A suite of tests in which each test represents one scenario of a feature.

  70. trait LogicFeatureSpecLike extends TestSuite with LogicTestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class LogicFeatureSpec, which represents a suite of tests in which each test represents one scenario of a feature.

  71. class LogicFlatSpec extends LogicFlatSpecLike

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

  72. trait LogicFlatSpecLike extends TestSuite with LogicTestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting

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

  73. class LogicFreeSpec extends LogicFreeSpecLike

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

  74. trait LogicFreeSpecLike extends TestSuite with LogicTestRegistration with Informing with Notifying with Alerting with Documenting

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

  75. class LogicFunSpec extends LogicFunSpecLike

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

  76. trait LogicFunSpecLike extends TestSuite with LogicTestRegistration with Informing with Notifying with Alerting with Documenting

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

  77. class LogicFunSuite extends LogicFunSuiteLike

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

  78. trait LogicFunSuiteLike extends TestSuite with LogicTestRegistration with Informing with Notifying with Alerting with Documenting

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

  79. class LogicPropSpec extends LogicPropSpecLike

    A suite of property-based tests.

  80. trait LogicPropSpecLike extends TestSuite with LogicTestRegistration with Informing with Notifying with Alerting with Documenting

    Implementation trait for class LogicPropSpec, which represents a suite of property-based tests.

  81. trait LogicTestRegistration extends AnyRef

    Trait declaring methods that can be used to register by-name test functions that have any result type.

  82. class LogicWordSpec extends LogicWordSpecLike

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

  83. trait LogicWordSpecLike extends TestSuite with LogicTestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting

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

  84. trait LoneElement extends AnyRef

    Trait that provides an implicit conversion that adds to collection types a loneElement method, which will return the value of the lone element if the collection does indeed contain one and only one element, or throw TestFailedException if not.

  85. trait Matchers extends Assertions with Tolerance with ShouldVerb with MatcherWords with Explicitly

    Trait that provides a domain specific language (DSL) for expressing assertions in tests using the word should.

  86. trait MustMatchers extends Assertions with Tolerance with MustVerb with MatcherWords with Explicitly

    Trait that provides a domain specific language (DSL) for expressing assertions in tests using the word must.

  87. trait NonImplicitAssertions extends Assertions

    Trait that can be mixed into a Suite to disable the implicit conversions provided by default in trait Assertions, which trait Suite extends.

  88. trait Notifier extends AnyRef

    Trait providing an apply method to which status updates about a running suite of tests can be reported.

  89. trait Notifying extends AnyRef

    Trait that contains the note method, which can be used to send a status notification to the reporter.

  90. trait OneInstancePerTest extends SuiteMixin

    Trait that facilitates a style of testing in which each test is run in its own instance of the suite class to isolate each test from the side effects of the other tests in the suite.

  91. trait OptionValues extends AnyRef

    Trait that provides an implicit conversion that adds a value method to Option, which will return the value of the option if it is defined, or throw TestFailedException if not.

  92. sealed abstract class Outcome extends Product with Serializable

    Superclass for the possible outcomes of running a test.

  93. trait OutcomeOf extends AnyRef

    Trait that contains the outcomeOf method, which executes a passed code block and transforms the outcome into an Outcome, using the same mechanism used by ScalaTest to produce an Outcome when executing a test.

  94. trait ParallelTestExecution extends OneInstancePerTest

    Trait that causes that the tests of any suite it is mixed into to be run in parallel if a Distributor is passed to runTests.

  95. trait PartialFunctionValues extends AnyRef

    Trait that provides an implicit conversion that adds a valueAt method to PartialFunction, which will return the value (result) of the function applied to the argument passed to valueAt, or throw TestFailedException if the partial function is not defined at the argument.

  96. trait Payloads extends AnyRef

    Trait facilitating the inclusion of a payload in a thrown ScalaTest exception.

  97. sealed trait PendingStatement extends AnyRef

    Trait mixed into the result type of the pending statement of trait Assertions, which always throws TestPendingException.

  98. trait PrivateMethodTester extends AnyRef

    Trait that facilitates the testing of private methods.

  99. class PropSpec extends PropSpecLike

    A suite of property-based tests.

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

    Implementation trait for class PropSpec, which represents a suite of property-based tests.

  101. trait RandomTestOrder extends OneInstancePerTest

    Trait that causes tests to be run in pseudo-random order.

  102. trait RecoverMethods extends AnyRef

    Offers two methods for transforming futures when exceptions are expected.

  103. trait Reporter extends AnyRef

    Trait whose instances collect the results of a running suite of tests and presents those results in some way to the user.

  104. trait ResourcefulReporter extends Reporter

    Subtrait of Reporter that contains a dispose method for releasing any finite, non-memory resources, such as file handles, held by the Reporter.

  105. trait Retries extends AnyRef

    Provides methods that can be used in withFixture implementations to retry tests in various scenarios.

  106. trait ScreenshotCapturer extends AnyRef

    Trait containing one abstract method that can capture a screenshot and save it as a file to a given directory.

  107. class Sequential extends Suite with SequentialNestedSuiteExecution

    A Suite class mixing in SequentialNestedSuiteExecution that takes zero to many Suites, which will be returned from its nestedSuites method.

  108. trait SequentialNestedSuiteExecution extends SuiteMixin

    Trait that causes the nested suites of any suite it is mixed into to be run sequentially even if a Distributor is passed to runNestedSuites.

  109. final class StatefulStatus extends Status with Serializable

    Status implementation that can change its state over time.

  110. sealed trait Status extends AnyRef

    The result status of running a test or a suite, which is used to support parallel and asynchronous execution of tests.

  111. class Stepwise extends Suite with StepwiseNestedSuiteExecution

    A Suite class that takes zero to many Suites, which will be returned from its nestedSuites method and executed in “stepwise” fashion by its runNestedSuites method.

  112. trait StepwiseNestedSuiteExecution extends SuiteMixin

    Trait that causes the nested suites of any suite it is mixed into to be run sequentially even if a Distributor is passed to runNestedSuites.

  113. trait Stopper extends AnyRef

    Trait whose instances can accept a stop request and indicate whether a stop has already been requested.

  114. trait StreamlinedXml extends AnyRef

    Trait providing a streamlined method that returns a Uniformity[T] instance for any subtype of scala.xml.NodeSeq that will normalize the XML by removing empty text nodes and trimming non-empty text nodes.

  115. trait StreamlinedXmlEquality extends AnyRef

    Trait providing an implicit Equality[T] for subtypes of scala.xml.NodeSeq that before testing for equality, will normalize left and right sides by removing empty XML text nodes and trimming non-empty text nodes.

  116. trait StreamlinedXmlNormMethods extends StreamlinedXml with NormMethods

    Subtrait of NormMethods that provides an implicit Uniformity[T] for subtypes of scala.xml.NodeSeq that enables you to streamline XML by invoking .norm on it.

  117. trait Suite extends Assertions with Serializable

    A suite of tests.

  118. trait SuiteMixin extends AnyRef

    Trait defining abstract "lifecycle" methods that are implemented in Suite and can be overridden in stackable modification traits.

  119. class Suites extends Suite

    A Suite class that takes zero to many Suites in its constructor, which will be returned from its nestedSuites method.

  120. class Tag extends AnyRef

    Class whose subclasses can be used to tag tests in style traits in which tests are defined as functions.

  121. class TagAnnotation extends Annotation with Annotation with ClassfileAnnotation

  122. trait TestData extends AnyRef

    A bundle of information about the current test.

  123. trait TestRegistration extends AnyRef

    Trait declaring methods that can be used to register by-name test functions that have any result type.

  124. trait TestSuite extends Suite

    The base trait of ScalaTest's synchronous testing styles, which defines a withFixture lifecycle method that accepts as its parameter a test function that returns an Outcome.

  125. trait TestSuiteMixin extends SuiteMixin

  126. trait TestsBeforeNestedSuites extends Suite

  127. final class Tracker extends AnyRef

    Class that tracks the progress of a series of Ordinals produced by invoking next and nextNewOldPair on the current Ordinal.

  128. trait TryValues extends AnyRef

    Trait that provides an implicit conversion that adds success and failure methods to scala.util.Try, enabling you to make assertions about the value of a Success or the exception of a Failure.

  129. trait WillMatchers extends Expectations with Tolerance with WillVerb with FactMatcherWords with Explicitly

    Trait that provides a domain specific language (DSL) for expressing assertions in tests using the word will.

  130. class WordSpec extends WordSpecLike

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

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

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

  132. class WrapWith extends Annotation with Annotation with ClassfileAnnotation

  133. type PendingNothing = PendingStatement

    Annotations
    @deprecated
    Deprecated

    Please use PendingStatement instead

  134. trait Rerunner extends AnyRef

    Trait whose instances can rerun tests or other entities (such as suites).

Value Members

  1. object AppendedClues extends AppendedClues

    Companion object that facilitates the importing of AppendedClues members as an alternative to mixing it in.

  2. object Assertions extends Assertions

    Companion object that facilitates the importing of Assertions members as an alternative to mixing it in.

  3. object Canceled extends Serializable

    Companion object to class Canceled that provides, in addition to the extractor and factory method provided by the compiler given its companion is a case class, a second factory method that produces a Canceled outcome given a string message.

  4. object Checkpoints extends Checkpoints

    Companion object that facilitates the importing the members of trait Checkpoints as an alternative to mixing it in.

  5. object CompleteLastly extends CompleteLastly

    Companion object that facilitates the importing of CompleteLastly members as an alternative to mixing it in.

  6. object ConfigMap extends Serializable

    Companion object to class ConfigMap containing factory methods.

  7. object DiagrammedAssertions extends DiagrammedAssertions

    Companion object that facilitates the importing of DiagrammedAssertions members as an alternative to mixing it in.

  8. object DiagrammedExpr

    DiagrammedExpr companion object that provides factory methods to create different sub types of DiagrammedExpr

  9. object EitherValues extends EitherValues

    Companion object that facilitates the importing of ValueEither members as an alternative to mixing it in.

  10. object Exceptional extends Serializable

    Companion object to class Exceptional that provides a factory method and an extractor that enables patterns that match both Failed and Canceled outcomes and extracts the contained exception and a factory method.

  11. object Expectations extends Expectations

  12. object Fact

  13. object Failed extends Serializable

  14. object FailedStatus extends Status with Serializable

    Singleton status that represents an already completed run with at least one failed test or aborted suite.

  15. object Filter extends Serializable

  16. object FutureOutcome

    Companion object to FutureOutcomes that contains factory methods for creating already-completed FutureOutcomes.

  17. object Inside extends Inside

    Companion object that facilitates the importing of the inside construct as an alternative to mixing it in.

  18. object Inspectors extends Inspectors

    Companion object that facilitates the importing of Inspectors members as an alternative to mixing it in.

  19. object LoneElement extends LoneElement

    Companion object that facilitates the importing of LoneElement members as an alternative to mixing it in.

  20. object Matchers extends Matchers

    Companion object that facilitates the importing of Matchers members as an alternative to mixing it the trait.

  21. object MustMatchers extends MustMatchers

    Companion object that facilitates the importing of Matchers members as an alternative to mixing it the trait.

  22. object NonImplicitAssertions extends NonImplicitAssertions

    Companion object that facilitates the importing of the members of trait Assertions without importing the implicit conversions it provides by default.

  23. object OptionValues extends OptionValues

    Companion object that facilitates the importing of OptionValues members as an alternative to mixing it in.

  24. object Outcome extends Serializable

    Companion object for trait Outcome that contains an implicit method that enables collections of Outcomes to be flattened into a collections of contained exceptions.

  25. object OutcomeOf extends OutcomeOf

    Companion object that facilitates the importing of OutcomeOf's method as an alternative to mixing it in.

  26. object PartialFunctionValues extends PartialFunctionValues

    Companion object that facilitates the importing of PartialFunctionValues members as an alternative to mixing it in.

  27. object Payloads extends Payloads

    Companion object that facilitates the importing of Payloads members as an alternative to mixing it in.

  28. object Pending extends Outcome with Product with Serializable

    Outcome for a test that was pending, which contains an optional string giving more information on what exactly is needed for the test to become non-pending.

  29. object PrivateMethodTester extends PrivateMethodTester

    Companion object that facilitates the importing of PrivateMethodTester members as an alternative to mixing it in.

  30. object RecoverMethods extends RecoverMethods

    Companion object that facilitates the importing of RecoverMethods's method as an alternative to mixing it in.

  31. object Retries extends Retries

    Companion object to trait Retries that enables its members to be imported as an alternative to mixing them in.

  32. val ScalaTestVersion: String

    The version number of ScalaTest.

    The version number of ScalaTest.

    returns

    the ScalaTest version number.

  33. object Sequential extends Serializable

    Companion object to class Sequential that offers an apply factory method for creating a Sequential instance.

  34. object Stepwise extends Serializable

    Companion object to class Stepwise that offers an apply factory method for creating a Stepwise instance.

  35. object Stopper

    Companion object to Stopper that holds a factory method that produces a new Stopper whose stopRequested method returns false until after its requestStop has been invoked.

  36. object StreamlinedXml extends StreamlinedXml

    Companion object that facilitates the importing of StreamlinedXml members as an alternative to mixing it the trait.

  37. object StreamlinedXmlEquality extends StreamlinedXmlEquality

    Companion object that facilitates the importing of StreamlinedXmlEquality members as an alternative to mixing it the trait.

  38. object StreamlinedXmlNormMethods extends StreamlinedXmlNormMethods

    Companion object that facilitates the importing of StreamlinedXmlNormMethods members as an alternative to mixing it the trait.

  39. object Succeeded extends Outcome with scalatest.compatible.Assertion with Product with Serializable

    Outcome for a test that succeeded.

  40. object SucceededStatus extends Status with Serializable

    Singleton status that represents an already completed run with no tests failed and no suites aborted.

  41. object Suites extends Serializable

    Companion object to class Suites that offers an apply factory method for creating a Suites instance.

  42. object Tag

    Companion object for Tag, which offers a factory method.

  43. object Tracker

  44. object TryValues extends TryValues

    Companion object that facilitates the importing of TryValues members as an alternative to mixing it in.

  45. object WillMatchers extends WillMatchers

    Companion object that facilitates the importing of Matchers members as an alternative to mixing it the trait.

  46. package check

  47. package compatible

  48. package concurrent

    ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter.

  49. package enablers

  50. package events

  51. package exceptions

  52. package fixture

  53. package matchers

  54. package path

  55. package prop

  56. package tagobjects

  57. package time

  58. package tools

  59. package words

Inherited from AnyRef

Inherited from Any

Ungrouped