ScalaTest 1.0
|
|
org/scalatest/Tag.scala
]
abstract
class
Tag(val
name : java.lang.String)
extends
AnyRefFunSuite
,
Spec
, FlatSpec
, WordSpec
, FeatureSpec
, and their
sister traits in the org.scalatest.fixture
package. For example, if you define:
object SlowTest extends Tag("SlowTest")then you can tag a test as a
SlowTest
in a FunSuite
or FixtureFunSuite
like this:
import org.scalatest.FunSuite class MySuite extends FunSuite { test("my test", SlowTest) { Thread.sleep(1000) } }
or in a Spec
or FixtureSpec
like this:
import org.scalatest.Spec class MySpec extends Spec { it("should sleep for a second", SlowTest) { Thread.sleep(1000) } }
or in a FlatSpec
or FixtureFlatSpec
like this:
import org.scalatest.FlatSpec class MySpec extends FlatSpec { it should "sleep for a second" taggedAs(SlowTest) in { Thread.sleep(1000) } }
or in a WordSpec
or FixtureWordSpec
like this:
import org.scalatest.WordSpec class MySpec extends WordSpec { "should sleep for a second" taggedAs(SlowTest) in { Thread.sleep(1000) } }
or in a FeatureSpec
or FixtureFeatureSpec
like this:
import org.scalatest.FeatureSpec class MySpec extends FeatureSpec { scenario("should sleep for a second", SlowTest) { Thread.sleep(1000) } }If you have created Java annotation interfaces for use as tag names in direct subclasses of
org.scalatest.Suite
,
then you may want to use group names on your FunSuite
s and Spec
s that match. To do so, simply
pass the fully qualified names of the Java interface to the Tag
constructor. For example, if you've
defined a Java annotation interface with fully qualified name, com.mycompany.testtags.SlowTest
, then you could
create a matching group for FunSuite
s like this:
object SlowTest extends Tag("com.mycompany.testtags.SlowTest")
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
ScalaTest 1.0
|
|