object Network extends Tag
Tag object that indicates a test is network-intensive (i.e., consumes a lot of network bandwidth when it runs).
The corresponding tag annotation for this tag object is org.scalatest.tags.Network
.
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 network-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.network import org.scalatest._ import tagobjects.Network class SetSpec extends FlatSpec { "An empty Set" should "have size 0" taggedAs(Network) in { assert(Set.empty.size === 0) } }
- Source
- Network.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Network
- Tag
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All