FreeSpecStringWrapper

final protected class FreeSpecStringWrapper(string: String, pos: Position)

A class that via an implicit conversion (named convertToFreeSpecStringWrapper) enables methods when, that, in, is, taggedAs and ignore to be invoked on Strings.

This class provides much of the syntax for FixtureAsyncFreeSpec, however, it does not add the verb methods (should, must, and can) to String. Instead, these are added via the ShouldVerb, MustVerb, and CanVerb traits, which FixtureAsyncFreeSpec mixes in, to avoid a conflict with implicit conversions provided in Matchers and MustMatchers.

Value parameters:
string

the string that is wrapped

class Object
trait Matchable
class Any

Value members

Concrete methods

def -(fun: => Unit): Unit

Register some text that may surround one or more tests. Thepassed function value may contain surrounding text registrations (defined with dash (-)) and/or tests (defined with in). This trait's implementation of this method will register the text (passed to the contructor of FreeSpecStringWrapper and immediately invoke the passed function.

Register some text that may surround one or more tests. Thepassed function value may contain surrounding text registrations (defined with dash (-)) and/or tests (defined with in). This trait's implementation of this method will register the text (passed to the contructor of FreeSpecStringWrapper and immediately invoke the passed function.

def ignore(testFun: FixtureParam => Future[Assertion]): Unit

Supports ignored test registration.

Supports ignored test registration.

For example, this method supports syntax such as the following:

"complain on peek" ignore { fixture => ... }
                  ^

For more information and examples of this method's use, see the main documentation for trait FixtureAsyncFreeSpec.

Value parameters:
testFun

the test function

def ignore(testFun: () => Future[Assertion]): Unit

Supports registration of ignored tests that take no fixture.

Supports registration of ignored tests that take no fixture.

For example, this method supports syntax such as the following:

"complain on peek" ignore { () => ... }
                  ^

For more information and examples of this method's use, see the main documentation for trait FixtureAsyncFreeSpec.

Value parameters:
testFun

the test function

def in(testFun: FixtureParam => Future[Assertion]): Unit

Supports test registration.

Supports test registration.

For example, this method supports syntax such as the following:

"complain on peek" in { fixture => ... }
                  ^

For more information and examples of this method's use, see the main documentation for trait FixtureAsyncFreeSpec.

Value parameters:
testFun

the test function

def in(testFun: () => Future[Assertion]): Unit

Supports registration of tests that take no fixture.

Supports registration of tests that take no fixture.

For example, this method supports syntax such as the following:

"complain on peek" in { () => ... }
                  ^

For more information and examples of this method's use, see the main documentation for trait FixtureAsyncFreeSpec.

Value parameters:
testFun

the test function

def is(testFun: => PendingStatement): Unit

Supports pending test registration.

Supports pending test registration.

For example, this method supports syntax such as the following:

"complain on peek" is (pending)
                  ^

For more information and examples of this method's use, see the main documentation for trait FixtureAsyncFreeSpec.

Value parameters:
testFun

the test function

def taggedAs(firstTestTag: Tag, otherTestTags: Tag*): ResultOfTaggedAsInvocationOnString

Supports tagged test registration.

Supports tagged test registration.

For example, this method supports syntax such as the following:

"complain on peek" taggedAs(SlowTest) in { fixture => ... }
                  ^

For more information and examples of this method's use, see the main documentation for trait FixtureAsyncFreeSpec.

Value parameters:
firstTestTag

the first mandatory test tag

otherTestTags

the others additional test tags