fitnesse

Launch IE from a windows service (more or less)

I want to use CruiseControl.net as a service and have it launch the Fitnesse test runner as a task to run a bunch of acceptance tests using the watin fixture which starts IE. Oh and I want to do this all on a virtual server. The above all works fine if I'm not running CC.Net as a service (ie. log in to the server via remote desktop and ...

Is there a .NET version of Concordion?

Apart from Fitnesse is there anything like concordion for .NET? Concordion is an open source framework for Java that lets you turn a plain English description of a requirement into an automated test David Peterson (the author of Concordion) has told me that there is no .net port of Concordion that he knows of. However he say...

Automated testing of Windows Forms

We're doing automated acceptance testing of our windows forms apps. We're using Fitnesse to have our business people write the tests, and then writing C# fixtures to carry out the tests. We're currently looking at both UI Automated (using project White) and just running the code itself. I'm curious as to what other people do for this ...

Dynamicly load dll in fitnesse fixture...

I'm trying to write a FitNesse fixture against an interface (in c#). I want to be able to have the fixture dynamically load the implementation from a dll (so that I can use the same tests against different implementations of the same interface...i.e. mock data, live data, etc.). I have a init method in my fixture that takes 2 strings, ...

FitNesse RowFixture: contains, startsWith, endsWith...

Is it possible to express this in a RowFixture in FitNesse for .net: contains(data) startswith(data) endswith(data) ...

Are there any Java libraries which I can use for automated testing of Windows GUIs?

Currently I am doing automated integration testing using FitNesse (Java) and have successfully plugged-in Watij to access a web-based application. I would like to extend this to also drive Windows GUI (non-Java) applications. To this end, are there any Java libraries available which I can use in a similar way? ...

How can I configure Fitnesse to automatically add the Test property to all pages ending in "Tests"

I its default configuration fitnesse automatically adds the Test property to all pages ending in "Test". However, in the project I'm working I have to add the Test property to all pages ending in "Tests". Unfortunately, renaming all pages so that they end in "Test" is not a option for me. ...

Test framework for [insert language here]

I am looking for a test framework to introduce automated tests for a language without much test support. As far as I can understand, I need a framework that's capable of running the VDF tests using some form of protocol. I would much rather spend my time writing tests than writing VDF code to interface with the test framework, so a light...

Modifying the strings in fitnesse textbox before running the tests using C#

Bear with me guys because I don't know how to start things up using fitNesse framework. okay here's where I need help, upon running the test I want to capture the string or the fitnesse scripts being placed in the fitnesse textarea and then a certain function will then parse the scripts to replace the strings I want to replace. For exam...

Fitnesse Suite fails to execute tests

I'm attempting to run a suite of Fitnesse tests however I keep getting the following error message. Testing was interupted and results are incomplete. Test Pages: 0 right, 0 wrong, 0 ignored, 0 exceptions Assertions: 0 right, 0 wrong, 0 ignored, 0 exceptions The two pages run fine by themselves however when the links are included ...

Assocating BDD Scenarios with results of Silverlight Tests

I work with a team that uses Behaviour Driven Development(BDD) to deliver our applications. We have started delivering Silverlight applications. I would like to associate the agreed BDD Scenarios written in plain text to the results of the automated tests for our silverlight application. So when a scenario is met in the application th...

Using the Fitnesse Test Automation tool to test letters generated with StyleVision

We use Fitnesse sucessfully to test the majority of our companies application. However we have to test the letters we generate using StyleVision manually. I was wondering if anyone has an automated approach to testing letters generated using Stylevision. It does not have to be with Fitnesse but it would be great if it was. Any help woul...

How to pass arbitrary object within Fitnesse page?

Hi, I need to pass an object (my own business object) between two tables in one page. The value is got from the getter call in one fixture and then should be used as field in another fixture (both ColumnFixtures). Please note that the object to be passed is neither primitive nor String and the conversion is not that simple. Is it even po...

How to get Fitnesse test name

Is there an API to get the name of the current test in fitnesse.NET code? My fixture class inherits fitlibrary.SequenceFixture. ...

Testing WCF service with Fitnesse, should I add WebReference??

I want to use Fitnesse to do a subsytem testing of a WCF service. Now to test a WCF service should I add the 'WebReference', and to add the webreference I require to host the service somewhere? I believe Fitnesse as a new consumer to the service and it should add the WebReference. ...

Delphi and Fitnesse/fit4delphi examples?

Is there any opensource or example projects showing the use of fitnesse with delphi? It's sad how hard it is to find resources and information for delphi... :-/ UPDATE: Ok. I realize that my question was a little short. Searching SO and google was kind of obvious for me, so I didn't mention that I already did. So to clarify a little: ...

Fitnesse on Enterprise cruise server

My cruise server runs fitnesse everytime i do a check-in. thats behaving perfectly as expected. But the only problem is cruise doesn't fails eventhough if any test fit test fails. Has anyone got any idea how to force cruise to get RED (fail) whenever any fit test fails? thanks ...

How to setup Fitnesse CmSytem for Perforce

What is the best way to setup perforce version control for the latest fitnesse distributions? We have our fitnesse files under perforce version control, but manually checking out prior to each update is a bit of a pain. Since the 20090214 release of Fitnesse, CM integration is included or more precisely plugins for version control syste...

Having issues Running Fitnesse for projects using NHibernate

We are having issues in running Fitnesse for project which uses NHibernate. For all the project FitNesse looks into appropriate folder for getting the dll. For project having reference to NHibernate it errors saying type load exception. Currently we have got it working by copying all the dlls into Fitnesse/dotnet folder. I am sure there...

fitnesse test suite with variables

I was wondering is it possible to set up a variable within the test suite so thatit can be passed down to the setup fit page as a parameter value ? ...