Runs the code of the test.
Runs the code of the test.
A Map[String, Any]
containing objects that can be used
to configure the fixture and test.
A Map[String, Any]
containing objects that can be used
to configure the fixture and test.
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
.
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
.
Tag names for this test.
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
.
A test function taking no arguments, which also provides a test name and config map.
Suite
's implementation ofrunTest
passes instances of this trait towithFixture
for every test method it executes. It invokeswithFixture
for every test, including test methods that take anInformer
. For the latter case, theInformer
to pass to the test method is already contained inside theNoArgTest
instance passed towithFixture
.