chicachick
chicachick

Reputation:

Fitnesse test suite with variables

Is it possible to set up a variable within the test suite so that it can be passed down to the setup fit page as a parameter value?

Upvotes: 1

Views: 1593

Answers (2)

Uncle Bob
Uncle Bob

Reputation: 4750

Sure. Use a !define xxx {yyy} on the suite page and a ${xxx} on the SetUp page. Make sure the SetUp page and all the test pages are children of the Suite page.

Upvotes: 2

Jochen
Jochen

Reputation: 1488

Have a look at the FlowFixture, this contains the keyword name.

More info at: http://www.syterra.com/FitnesseDotNet/NameKeyword.html

Upvotes: 0

Related Questions