case class ScalaStepDetails(frame: StackTraceElement, name: String, pattern: String, types: Seq[Manifest[_]], body: (List[Any]) => Any) extends Product with Serializable
Implementation of step definition for scala.
- frame
Representation of a stack frame containing information about the context in which a step was defined. Allows retrospective queries about the definition of a step.
- name
The name of the step definition class, e.g. cucumber.runtime.scala.test.CukesStepDefinitions
- pattern
The regex matcher that defines the cucumber step, e.g. /I eat (.*) cukes$/
- types
Parameters types of body step definition
- body
Function body of a step definition. This is what actually runs the code within the step def.
- Alphabetic
- By Inheritance
- ScalaStepDetails
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ScalaStepDetails(frame: StackTraceElement, name: String, pattern: String, types: Seq[Manifest[_]], body: (List[Any]) => Any)
- frame
Representation of a stack frame containing information about the context in which a step was defined. Allows retrospective queries about the definition of a step.
- name
The name of the step definition class, e.g. cucumber.runtime.scala.test.CukesStepDefinitions
- pattern
The regex matcher that defines the cucumber step, e.g. /I eat (.*) cukes$/
- types
Parameters types of body step definition
- body
Function body of a step definition. This is what actually runs the code within the step def.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val body: (List[Any]) => Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- val frame: StackTraceElement
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val name: String
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val pattern: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val types: Seq[Manifest[_]]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()