All Downloads are FREE. Search and download functionalities are using the official Maven repository.

im.yagni.driveby.tracking.ExampleTracking.scala Maven / Gradle / Ivy

The newest version!
package im.yagni.driveby.tracking

import im.yagni.driveby.specs2.{SpecificationAware, NakedDriveByExample}
import im.yagni.driveby.Example

trait ExampleTracking[T] extends NakedDriveByExample[T] {
  self: SpecificationAware =>

  override def beforeExample = exampleStarted _ :: super.beforeExample
  override def afterExample = exampleFinished _ :: super.afterExample
  override def onFailure = exampleFailed _ :: super.onFailure

  private def exampleStarted(example: Example) { Tracker.add(ExampleStarted(specification, example)) }
  private def exampleFinished(example: Example) { Tracker.add(ExampleFinished(specification, example))}
  private def exampleFailed(example: Example, message: String) { Tracker.add(ExampleFailed(specification, example))}
}







© 2015 - 2024 Weber Informatics LLC | Privacy Policy