CPU

object CPU extends Tag

Tag object that indicates a test is CPU-intensive (i.e., consumes a lot of CPU time when it runs).

The corresponding tag annotation for this tag object is org.scalatest.tags.CPU. 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 CPU-intensive. 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.cpu

import org.scalatest._
import tagobjects.CPU

class SetSpec extends FlatSpec {

 "An empty Set" should "have size 0" taggedAs(CPU) in {
   assert(Set.empty.size === 0)
 }
}
class Tag
class Object
trait Matchable
class Any
CPU.type

Value members

Inherited fields

val name: String
Inherited from:
Tag