fitnesse

How can I expire all my sessions in Tomcat ?

I would like to expire all my sessions in Tomcat. We test our product under Fitnesse and some sessions remain and the end of the session causes dependency between the tests. I do it by hand with the following code, but some sessions remain (I can check it with the http://localhost:8080/manager/html/list url) public static void expireAll...

Give an argument to a Fitnesse output method?

My Fitnesse test does some underlying stuff and populates a Map with the results. The map keys can vary dramatically depending on the test, so I'd like to something like the following: |parseFile |getValue("RecordID")|getValue("StatusCode")| ...etc... | |foo.txt | MyId | 93 | | I could...

How do I use unicode characters in FitNesse fixtures?

I'm testing the workings of a unicode-scrubbing routine using FitNesse, but the unicode characters I enter in the decision table don't make it through to my fixture. The decision table looks a little like this, |first name before|last name before |first name after|last name after | |Władysław |Belina-Prażmowski|Wladyslaw ...

How to verify data in table using FitNesse/SLIM?

Hi all, I am currently having some doubt in verifying the data in grib control. Given a table with ColumnA and ColumnB, lets assume there are 2 rows of records are generated after some search query is applied. My objective is to ensure the data in ColumnB showing my expectation output, lets assume 'data1' should be shown under ColumnB....

How to pass data stored in table between test pages in fitnesse

In my fitnesse project i've got one table which stores authentication data to database. I'm using it on each site. Is it possible to have one site with that table and allow all other test sites use data from it? how i can define global table with variables that i need? ...