TestDataFixture
org.scalatest.fixture.TestDataFixture
trait TestDataFixture
Trait that when mixed into a FixtureSuite passes the TestData passed to withFixture as a fixture into each test.
For example, here's how you could access the test's name in each test using TestDataFixture:
package org.scalatest.examples.fixture.testdatafixture
import org.scalatest._
class ExampleSpec extends fixture.FlatSpec with fixture.TestDataFixture {
"Accessing the test data" should "be easy!" in { td =>
assert(td.name == "Accessing the test data should be easy!")
}
it should "be fun!" in { td =>
assert(td.name == "Accessing the test data should be fun!")
}
}
Attributes
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Members list
In this article