fitnesse

Are there any example or resources or even framework which consists of Asp.net MVP + Sandcastle + TDD/Nunit + Fitnesse?

hi guys, our dev team is currently using asp.net 2.0 and after a lot of browsing and cross site referencing i found that the new in thing is the asp.net MVC but found that there's a few things that it can't do such as support asp.net controls, view state. i'm not sure what are the other limitation besides the total change of paradigm w...

Need to implement custom Fitnesse responders

Hi, I believe that I am in need of implementing custom Fitnesse responders for a client but have not found much success in my research/attempts to make this work. The idea is that the client will have suites of tests written in Fitnesse but that the results will be published to their database via a web service on their local intranet. W...

fitnesse framework, "output captured" takes ages until it appears on screen. after multiple runs...

hi all, i am wondering if other users already had the same issues. after tests have been run multiple times (guess ~30 times) the little "output captured" button takes ages until it appears on screen. the test ran normally (results at the top of the page are fine) but the page takes roundabout 30 more seconds until it finished loading a...

Fitnesse- Should tests talk to the database?

We are trying to use Fitnesse for our Functional test. Should i be mocking dependencies or should it be testing against the database? What are the Pros/Cons of either of the approach? The whole issue of testing against the DB is setting up data which is huge dependency. If we mock then is it real functional test? Thanks ...

fitnesse test framework, arbitrary properties for test and queries/test runs based on them?

hi, our testers have the requirement to store multiple properties for a test that are not present in the "properties". e.g. they want to store priority, a description(not in the wiki page itself) and so on. they don't want to use the tagging mechanism. is there a way to store any kind of new xml node in the properties.xml for a test?...

Display Fitnesse XML reports within Hudson GUI

hello, After running fitnesse test using testrunner, I get an xml file containing all the results. Now I can't figure out how to display those results within the hudson GUI for a specific job. I've surfed the web, and what I found is a couple people modifying the xsd file from CruiseControl.NET, but nobody is actually showing it workin...

Using FitNesse rather than NUnit

As I've understood it, there's a couple of cases when you may want to use FitNesse. You want to do acceptance testing rather than unit testing. You want to use it as a communication tool with the stake holder. You want to do large scale tests rather than granular tests. You want non-technical people to write the tests. My personal op...

How do I catch generic fault exceptions in Fitnesse?

Previously within my Fitnesse fixture I was specifying an expected WCF exception using: exception[FaultException] Since then I have converted the WCF service to return a strongly typed FaultContract. I am now getting the following failure message: exception[FaultException`1: "A file with the name DMS Documents/testFileWord.doc alrea...

how do I use fitnesse ActionFixture with C#?

I tried to make an action fixture and it’s not working. (c# with Slim runner) Basically it seems like it's trying to interpret it as a column fixture. |!-Fitnesse.BuyActions-! | |Start|!-Fitnesse.BuyActions-!| |check|total |0.0 | |enter|price |12.00 | |press|buy | |check|total |12...

How do I pass in empty values in Fitnesse test?

I'm using Fit/Fitnesse. I have a column fixture that looks like this. !|Get Stepstools Medication Id From Vocab and String| |Concept As String|Vocabulary Name Abbr|Vocabulary Concept Id|Stepstools Med Id?| |AMOXICILLIN|RXNORM|723|1| |AMOXICILLIN| | |1| |AUGMENTIN|RXNORM|151392|8| |AUGMENTIN| | |8| |Amoxicillin 1000 MG / Cl...

How should one import large amounts of data for FIT/Fitnesse tests?

We have a scheduling engine with large amounts of test data to test all the scenarios, so test automation is critical. We're currently hoping to use FIT/Fitnesse. However a single test has quite a large table of test data, so it doesn't fit very well into the mould of "two or three inputs, one or more outputs" that Fitnesse uses in its e...

where I can get some tutorials on Java FitNesse and Slim?

I am studying TDD using FitNesse and I am looking some tutorials and examples. I would like to know where to find a good material. ...

Reports in Command Line FitNesse

How do I generate reports from Command Line FitNesse ? And, what types of reports are possible? xml, txt, plain? ...

FitNesse doesn't call setters in my fixture

I have copied a trivial example from the FitNesse Two-Minute example: package com.mrijk; import fit.ColumnFixture; public class Foobar extends ColumnFixture { private double numerator; private double denominator; public void setNumerator(double numerator) {this.numerator = numerator;} public void setDenominator(doubl...

FitNesse/Slim String Operators

Is it possible to express this in a Query Table in FitNesse with SLIM for .net: contains(data) startswith(data) endswith(data) I know from a previous question it was possible for FitNesse/Fit with cell handler loader. I'm looking for the equivalent in Slim. ...

In FitNesse, can variables be defined in terms of other variables?

In FitNesse, can variables be defined in terms of other variables? I want to do the equivalent of: int a=3; int b=a; To make this concrete, I have a variable defining the date: !define clock.date {2/2/2009} I then want to define some other variable ${other.date} based on it, something like: !define other.date {...

How can I adjust the CommandTImeout in DbFit for long running queries?

Is there any way to increase the CommandTimeout for DbFit queries? I have a long running stored procedure that times out when running it in a DbFit Test. It's possible for the procedure to run for a really long time (processing millions of records) and would like to have DbFit wait until it's completed, even if it takes several minutes...

How do I specify non-scalar parameters in a Slim table?

I want to test functions that have non-scalar parameters and return types, e.g., "given a matrix M, check that M times its inverse is the appropriate identity" or "given a row vector V, check that transpose(V) is the correct column vector. Do I need a clever use of TableTable? ...

FitNesse Suites Variables

Hi guys, I'm working with FitNesse and the first time trying with Suite. I had my test scripts in many parts as I was receiving Jave Heap errors. Now I'd thought try using suites. I have a Fitnesse module that load many variables. This module was included in each Part of the suite so I tried to use this variable module just at the beg...

Exception handling in FitNesse

This is a FitNesse beginner's question, so bare with me. Gojko Adzic, in his book Test Driven .NET Development with FitNesse, gives some basic tips on reducing the test code. There's a method called LogIn which, based on the username and password, returns player's id or throws an exception when there's no such registered player. Here's t...