Supports test registration.
Supports test registration.
This trait's implementation of this method will decide whether to register the text and invoke the passed function
based on whether or not this is part of the current "test path." For the details on this process, see
the How it executes section of the main documentation for
trait org.scalatest.path.FunSpec
.
the test text, which will be combined with the descText of any surrounding describers to form the test name
the optional list of tags for this test
the test function
DuplicateTestNameException
if a test with the same name has been registered previously
NullArgumentException
if specText
or any passed test tag is null
TestRegistrationClosedException
if invoked after run
has been invoked on this suite
Supports the registration of shared tests.
Supports the registration of shared tests.
This method supports syntax such as the following:
they must behave like nonFullStack(stackWithOneItem) ^
For examples of shared tests, see the Shared tests section
in the main documentation for trait org.scalatest.FunSpec
.
Supports the registration of shared tests.
Supports the registration of shared tests.
This method supports syntax such as the following:
they should behave like nonFullStack(stackWithOneItem) ^
For examples of shared tests, see the Shared tests section
in the main documentation for trait org.scalatest.FunSpec
.
Class that, via an instance referenced from the
they
field, supports test (and shared test) registration inFunSpec
s.This class supports syntax such as the following test registration:
and the following shared test registration:
For more information and examples, see the main documentation for
path.FunSpec
.