A test function taking a fixture parameter and returning an Outcome
.
For more detail and examples, see the documentation for trait fixture.FlatSpec
.
Attributes
- Companion
- object
- Graph
-
- Supertypes
- Self type
Members list
Value members
Abstract methods
Runs the test, using the passed FixtureParam
.
Runs the test, using the passed FixtureParam
.
Value parameters
- fixture
-
the
FixtureParam
Attributes
- Returns
-
an instance of
Outcome
Concrete methods
Convert this OneArgTest
to a NoArgTest
whose name
and configMap
methods return the same values as this OneArgTest
, and whose apply
method invokes this OneArgTest
's apply method, passing in the given fixture
.
Convert this OneArgTest
to a NoArgTest
whose name
and configMap
methods return the same values as this OneArgTest
, and whose apply
method invokes this OneArgTest
's apply method, passing in the given fixture
.
This method makes it easier to invoke the withFixture
method that takes a NoArgTest
. For example, if a FixtureSuite
mixes in SeveredStackTraces
, it will inherit an implementation of withFixture(NoArgTest)
provided by SeveredStackTraces
that implements the stack trace severing behavior. If the FixtureSuite
does not delegate to that withFixture(NoArgTest)
method, the stack trace severing behavior will not happen. Here's how that might look in a FixtureSuite
whose FixtureParam
is StringBuilder
:
def withFixture(test: OneArgTest) = { withFixture(test.toNoArgTest(new StringBuilder)) }
Invoking this method has no side effect. It just returns a NoArgTest
whose apply
method invokes apply
on this OneArgTest
, passing in the FixtureParam
passed to toNoArgTest
.
Value parameters
- fixture
-
the
FixtureParam
Attributes
- Returns
-
an new instance of
NoArgTest
Inherited methods
Attributes
- Inherited from:
- Function1
Attributes
- Inherited from:
- Function1
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
Attributes
- Returns
-
a string representation of the object.
- Definition Classes
-
Function1 -> Any
- Inherited from:
- Function1
Inherited fields
A ConfigMap
containing objects that can be used to configure the fixture and test.
A ConfigMap
containing objects that can be used to configure the fixture and test.
Attributes
- Inherited from:
- TestData
The name of this test.
The name of this test.
See the main documentation for this trait for an explanation of the difference between name
, text
, and scopes
.
Attributes
- Inherited from:
- TestData
An immutable IndexedSeq
containing the text for any "scopes" enclosing this test, in order from outermost to innermost scope.
An immutable IndexedSeq
containing the text for any "scopes" enclosing this test, in order from outermost to innermost scope.
See the main documentation for this trait for an explanation of the difference between name
, text
, and scopes
. If a test has no surrounding scopes, this field will contain an empty IndexedSeq
.
Attributes
- Inherited from:
- TestData
Tag names for this test.
The "text" for this test.
The "text" for this test.
See the main documentation for this trait for an explanation of the difference between name
, text
, and scopes
. If a test has no surrounding scopes, this field will contain the same string as name
.
Attributes
- Inherited from:
- TestData