Packages

object Slow extends Tag

Tag object that indicates a test is slow (i.e., takes a long time to run).

The corresponding tag annotation for this tag object is org.scalatest.tags.Slow. This tag object can be used to tag test functions (in style traits other than Spec, in which tests are methods not functions) as being slow. See the "tagging tests" section in the documentation for your chosen styles to see the syntax. Here's an example for FlatSpec:

package org.scalatest.examples.tagobjects.slow

import org.scalatest._
import tagobjects.Slow

class SetSpec extends FlatSpec {

  "An empty Set" should "have size 0" taggedAs(Slow) in {
    assert(Set.empty.size === 0)
  }
}

Source
Slow.scala
Linear Supertypes
Tag, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Slow
  2. Tag
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. val name: String
    Definition Classes
    Tag