Maurits Rijk
Maurits Rijk

Reputation: 9985

Fitnesse test against empty string result

I'm using Fitnesse SliM and I want to check if the result of a fixture is the empty string. Leaving the result field in Fitnesse empty just results in an ignored test which is obviously not what I want. I could solve this by extending the fixture code, but I wonder if this can be handled within Fitnesse itself.

Upvotes: 7

Views: 5272

Answers (3)

Kanstantsin Rybin
Kanstantsin Rybin

Reputation: 49

In this case - when you need to check with SLIM usage, whether the result is an empty string, you can use markup variable. Just define it somewhere on your page with test, like:

!define blank {}

And then call it anywhere you want:

|check|SomeFixtureName|${blank}|

Upvotes: 4

bneijt
bneijt

Reputation: 175

It seems that Slim implies an empty string as an ignore, at least for the QueryTable fixture: A cell that is left blank in the table will be filled in from the result and counted as ignored.

Even though this is not considered a good solution, if you really have to you could use a regular expression to test on an empty string by matching on

=~/^$/

Another option is using the null fixture driver, as seen in http://fitnesse.org/FitNesse.SuiteAcceptanceTests.SuiteSlimTests.SlimSymbolsCanBeBlankOrNull

Upvotes: 6

ryber
ryber

Reputation: 4555

passing the word 'blank' simulates a empty string.

like:

|Check|That the returned string is | blank |

Upvotes: 5

Related Questions