Home
last modified time | relevance | path

Searched refs:FixtureParam (Results 1 – 25 of 33) sorted by relevance

12

/dports/devel/scalatest/scalatest-1.6.1/src/test/scala/org/scalatest/fixture/
H A DFixtureSuiteSpec.scala52 expect(List("testThat(FixtureParam)", "testThis(FixtureParam)")) {
72 expect(List("testThat(FixtureParam)", "testThis(FixtureParam)")) {
84 assert(a.testNames === TreeSet("testThat(FixtureParam, Informer)", "testThis(FixtureParam)"))
135 expect(List("testThat(FixtureParam)", "testThis(FixtureParam)")) {
155 expect(List("testThat(FixtureParam)", "testThis(FixtureParam)")) {
167 assert(a.testNames === TreeSet("testThat(FixtureParam, Informer)", "testThis(FixtureParam)"))
868 type FixtureParam = String type
886 type FixtureParam = String type
902 type FixtureParam = String type
915 type FixtureParam = String type
[all …]
H A DFixtureFlatSpecSpec.scala28 type FixtureParam = String type
41 type FixtureParam = String type
50 type FixtureParam = String type
67 type FixtureParam = String type
75 type FixtureParam = String type
83 type FixtureParam = String type
109 type FixtureParam = String type
133 type FixtureParam = String type
223 type FixtureParam = String type
233 type FixtureParam = String type
[all …]
H A DFixtureFeatureSpecSpec.scala26 type FixtureParam = String type
39 type FixtureParam = String type
48 type FixtureParam = String type
65 type FixtureParam = String type
75 type FixtureParam = String type
107 type FixtureParam = String type
174 type FixtureParam = String type
184 type FixtureParam = String type
194 type FixtureParam = String type
204 type FixtureParam = String type
[all …]
H A DFixtureFreeSpecSpec.scala27 type FixtureParam = String type
42 type FixtureParam = String type
51 type FixtureParam = String type
70 type FixtureParam = String type
78 type FixtureParam = String type
104 type FixtureParam = String type
173 type FixtureParam = String type
183 type FixtureParam = String type
193 type FixtureParam = String type
203 type FixtureParam = String type
[all …]
H A DFixtureWordSpecSpec.scala27 type FixtureParam = String type
42 type FixtureParam = String type
51 type FixtureParam = String type
70 type FixtureParam = String type
78 type FixtureParam = String type
104 type FixtureParam = String type
173 type FixtureParam = String type
183 type FixtureParam = String type
193 type FixtureParam = String type
203 type FixtureParam = String type
[all …]
H A DFixtureSpecSpec.scala27 type FixtureParam = String type
40 type FixtureParam = String type
49 type FixtureParam = String type
66 type FixtureParam = String type
76 type FixtureParam = String type
108 type FixtureParam = String type
175 type FixtureParam = String type
185 type FixtureParam = String type
195 type FixtureParam = String type
205 type FixtureParam = String type
[all …]
H A DFixtureFunSuiteSpec.scala26 type FixtureParam = String type
39 type FixtureParam = String type
48 type FixtureParam = String type
65 type FixtureParam = String type
75 type FixtureParam = String type
107 type FixtureParam = String type
175 type FixtureParam = String type
185 type FixtureParam = String type
195 type FixtureParam = String type
205 type FixtureParam = String type
[all …]
H A DFixturePropSpecSpec.scala26 type FixtureParam = String type
39 type FixtureParam = String type
48 type FixtureParam = String type
65 type FixtureParam = String type
75 type FixtureParam = String type
107 type FixtureParam = String type
175 type FixtureParam = String type
185 type FixtureParam = String type
195 type FixtureParam = String type
205 type FixtureParam = String type
[all …]
/dports/devel/scalatest/scalatest-1.6.1/src/main/scala/org/scalatest/fixture/
H A DFixtureFlatSpec.scala403 …private def registerTestToRun(specText: String, testTags: List[Tag], testFun: FixtureParam => Any)…
550 def in(testFun: FixtureParam => Any) {
617 def ignore(testFun: FixtureParam => Any) {
706 def in(testFun: FixtureParam => Any) {
769 def ignore(testFun: FixtureParam => Any) {
1045 def in(testFun: FixtureParam => Any) {
1163 def in(testFun: FixtureParam => Any) {
1420 def in(testFun: FixtureParam => Any) {
1441 def ignore(testFun: FixtureParam => Any) {
1560 def in(testFun: FixtureParam => Any) {
[all …]
H A DFixtureFreeSpec.scala388 …private final val engine = new FixtureEngine[FixtureParam]("concurrentFixtureFreeSpecMod", "Fixtur…
419 …private def registerTestToRun(specText: String, testTags: List[Tag], testFun: FixtureParam => Any)…
442 …private def registerTestToIgnore(specText: String, testTags: List[Tag], testFun: FixtureParam => A…
481 def in(testFun: FixtureParam => Any) {
541 def ignore(testFun: FixtureParam => Any) {
606 def in(testFun: FixtureParam => Any) {
666 def ignore(testFun: FixtureParam => Any) {
H A DFixtureSpec.scala389 …private final val engine = new FixtureEngine[FixtureParam]("concurrentFixtureSpecMod", "FixtureSpe…
444 def apply(specText: String, testTags: Tag*)(testFun: FixtureParam => Any) {
529 protected def ignore(specText: String, testTags: Tag*)(testFun: FixtureParam => Any) {
550 protected def ignore(specText: String)(testFun: FixtureParam => Any) {
718 …protected implicit def convertPendingToFixtureFunction(f: => PendingNothing): FixtureParam => Any …
727 protected implicit def convertNoArgToFixtureFunction(fun: () => Any): (FixtureParam => Any) =
H A DFixtureSuite.scala377 protected type FixtureParam
401 protected trait OneArgTest extends (FixtureParam => Unit) { thisOneArgTest =>
411 def apply(fixture: FixtureParam)
444 def toNoArgTest(fixture: FixtureParam) =
466 …private[fixture] class TestFunAndConfigMap(val name: String, test: FixtureParam => Any, val config…
469 def apply(fixture: FixtureParam) {
528 val testFun: FixtureParam => Unit = {
529 (fixture: FixtureParam) => {
H A DFixturePropSpec.scala475 …private final val engine = new FixtureEngine[FixtureParam]("concurrentFixturePropSpecMod", "Fixtur…
502 protected def property(testName: String, testTags: Tag*)(testFun: FixtureParam => Any) {
521 protected def ignore(testName: String, testTags: Tag*)(testFun: FixtureParam => Any) {
621 …protected implicit def convertPendingToFixtureFunction(f: => PendingNothing): (FixtureParam => Any…
630 protected implicit def convertNoArgToFixtureFunction(fun: () => Any): (FixtureParam => Any) =
H A DFixtureFunSuite.scala371 …private final val engine = new FixtureEngine[FixtureParam]("concurrentFixtureFunSuiteMod", "Fixtur…
398 protected def test(testName: String, testTags: Tag*)(testFun: FixtureParam => Any) {
417 protected def ignore(testName: String, testTags: Tag*)(testFun: FixtureParam => Any) {
514 …protected implicit def convertPendingToFixtureFunction(f: => PendingNothing): (FixtureParam => Any…
523 protected implicit def convertNoArgToFixtureFunction(fun: () => Any): (FixtureParam => Any) =
H A DFixtureWordSpec.scala386 …private final val engine = new FixtureEngine[FixtureParam]("concurrentFixtureWordSpecMod", "Fixtur…
417 …private def registerTestToRun(specText: String, testTags: List[Tag], testFun: FixtureParam => Any)…
440 …private def registerTestToIgnore(specText: String, testTags: List[Tag], testFun: FixtureParam => A…
479 def in(testFun: FixtureParam => Any) {
539 def ignore(testFun: FixtureParam => Any) {
597 def in(testFun: FixtureParam => Any) {
657 def ignore(testFun: FixtureParam => Any) {
H A DFixtureFeatureSpec.scala379 …private final val engine = new FixtureEngine[FixtureParam]("concurrentFeatureSpecMod", "FixtureFea…
410 protected def scenario(specText: String, testTags: Tag*)(testFun: FixtureParam => Any) {
433 protected def ignore(specText: String, testTags: Tag*)(testFun: FixtureParam => Any) {
608 …protected implicit def convertPendingToFixtureFunction(f: => PendingNothing): FixtureParam => Any …
620 protected implicit def convertNoArgToFixtureFunction(fun: () => Any): (FixtureParam => Any) =
H A DFixtureNodeFamily.scala30 case class FixtureTestLeaf[FixtureParam](
34 f: FixtureParam => Any
H A DConfigMapFixture.scala30 type FixtureParam = Map[String, Any] type
/dports/devel/scalatest/scalatest-1.6.1/src/examples/scala/org/scalatestexamples/fixture/suite/
H A DTupleFixtureSuite.scala8 type FixtureParam = (StringBuilder, ListBuffer[String]) type
20 def testEasy(fixture: FixtureParam) {
28 def testFun(fixture: FixtureParam) {
H A DCaseClassFixtureSuite.scala10 type FixtureParam = FixtureHolder type
22 def testEasy(fixture: FixtureParam) {
30 def testFun(fixture: FixtureParam) {
/dports/devel/scalatest/scalatest-1.6.1/src/examples/scala/org/scalatestexamples/fixture/
H A DMultiFixtureFunSuite.scala23 implicit def withStringFixture(test: String => Any): FixtureParam => Any =
26 implicit def withListFixture(test: List[Int] => Any): FixtureParam => Any =
/dports/devel/scalatest/scalatest-1.6.1/src/main/scala/org/scalatest/mock/
H A DJMockCycleFixture.scala38 type FixtureParam = JMockCycle type
/dports/devel/scalatest/scalatest-1.6.1/src/test/scala/org/scalatest/
H A DStringFixture.scala22 type FixtureParam = String type
/dports/devel/scalatest/scalatest-1.6.1/src/main/scala/org/scalatest/concurrent/
H A DConductorFixture.scala92 type FixtureParam = Conductor type
H A DConductorMultiFixture.scala107 …implicit def withConductorFixture(fun: Conductor => Unit): this.FixtureParam => Unit = { configMap…

12