After

org.specs2.specification.After
See theAfter companion object
trait After extends Context

The After trait can be inherited by classes representing a context where an action must be executing after the main executable action

Attributes

See also

Example to understand why the type T must : AsResult

Companion
object
Graph
Supertypes
trait Context
trait Scope
trait Scope
class Object
trait Matchable
class Any
Show all
Known subtypes
trait After
trait BeforeAfter
trait BeforeAfter
Self type

Members list

Value members

Abstract methods

def after: Any

override this method to provide the after behavior

override this method to provide the after behavior

Attributes

Concrete methods

def andThen(a: After): After

sequence the actions of 2 After traits

sequence the actions of 2 After traits

Attributes

def apply[T : AsResult](a: => T): Result

execute an action returning a Result and finally the after action

execute an action returning a Result and finally the after action

Attributes

def compose(a: After): After

compose the actions of 2 After traits

compose the actions of 2 After traits

Attributes