... Thanks, but I'm not trying to test the user interface as such. All the interaction with the application can be done through FitNesse, but the user...
16153
Dan Woodward
rsidan
Sep 1, 2010 3:17 pm
In Slim there isn't currently a way to do that. It is an interesting idea that could be considered. What would folks think about adding an "invokeAfter()"...
16154
Dan Woodward
rsidan
Sep 1, 2010 3:26 pm
There is a mechanism where you can setup environment variables for SLIM_HOST and SLIM_PORT which can be used to connect to a remote Slim Host. I can't find...
16155
chan
atbl1511
Sep 1, 2010 7:08 pm
No matter what I tried, it did not work? I used Eclipse in Windows, I really need your help? - I download the fitlibrary.jar and copy it to my fitnesse.jar ...
16156
Rick Mugridge
rickmugridge
Sep 2, 2010 5:03 am
Hi, ... The above looks fine, although you only will need the Calculator class to run it in FitNesse. ... The following is not finding the fitlibrary.jar. Is...
16157
chan
atbl1511
Sep 2, 2010 4:30 pm
Hi Rick, I finally got it working ;)! Thanks so much for your help. The problem is that I used to use fitnesse with C# in C:\, and I did the same for Java, but...
16158
jamiedobsondotcodotuk
jamiedobsond...
Sep 2, 2010 7:47 pm
For those interested in FitNesse dissemination. http://www.financialagile.com/reflections/8-software/4-fitnesse J....
16159
Patrick Radtke
radtke2000
Sep 3, 2010 6:46 pm
The plugin lets you specify a host and a port for an already running Fitnesse instance. I haven't tried connecting to another server, but it should be able to....
16160
doug.knesek
Sep 5, 2010 9:55 pm
I'm trying to launch a FitNesse server from Maven to leverage the dependency management of Maven. We launch the project using Maven from NetBeans, and also...
16161
doug.knesek
Sep 5, 2010 9:55 pm
When I launch FitNesse using maven's exec:exec point my browser at FitNesse, I get the error below. Any ideas? ...
16162
Rick Mugridge
rickmugridge
Sep 5, 2010 10:25 pm
Yes, it's useful to be able to do things just before and just after table processing. Eg: o Allocate and deallocate resources: database connections, starting ...
16163
niesfisch79
Sep 7, 2010 2:05 pm
hi, thanks for your response. at the moment we don't have time to evaluate the forked version properly. is there a "quick win" we could implement ourselves by...
16164
johnwpenney
Sep 7, 2010 2:05 pm
Hello all, Could anyone advise whether support for new SQLServer 2008 datatypes - especially Date - might be imminent? I have a colleague who wants to refactor...
16165
jediwhale
Sep 7, 2010 4:34 pm
I didn't delve into the internals of the current parser very much - my goal was to replace its functionality with a different architecture, so I focused on the...
16166
jediwhale
Sep 7, 2010 4:37 pm
Java or .NET version?...
16167
John Penney
johnwpenney
Sep 7, 2010 8:39 pm
Apologies - should have said: .NET. Ta, John To: fitnesse@yahoogroups.com From: jediwhale@... Date: Tue, 7 Sep 2010 16:36:49 +0000 Subject: [fitnesse]...
16168
jediwhale
Sep 8, 2010 1:56 pm
dbFit is included with fitSharp but I really rely on the community to submit patches. I'm not the original author and I'm not really a DB expert. Want to...
16169
johnwpenney
Sep 10, 2010 1:52 pm
Hi all, I've written a fitSharp TableFixture to verify a function that returns a dynamically-sized table. I can check the number of rows and individual cell...
16170
jediwhale
Sep 10, 2010 2:12 pm
You need to walk the entire table, counting cells in each row. The table may be "ragged", i.e., different number of cells in each row, so you need to take the...
16171
John Penney
johnwpenney
Sep 10, 2010 3:01 pm
Thanks Mike: currently I'm getting data out of the FitNesse table using GetString(). How do I ascertain how many cells are in a given row? John To:...
16172
Eike Michael Lang
eml2306
Sep 10, 2010 9:56 pm
... We've been using that for some weeks now (Hudson running on a solaris box, connecting to FitNesse on a *gasp* windows machine). Works as advertised. -- ...
16173
Alan
ayackel
Sep 10, 2010 9:57 pm
Is it possible to use the '_' for parameters without alternating? eg....
16174
Robert Martin
rmartinoma
Sep 11, 2010 2:04 pm
Micah and I made a change that should make the processing of suites with large ScenarioLibraries much faster. If this works well, the technique could be used...
16175
Robert Martin
rmartinoma
Sep 11, 2010 3:44 pm
It turned out that this was trivial to add. So the latest EDGE has it. beginTable is called at the start of a DecisionTable. endTable is called at the end of...
16176
Mike Stockdale
jediwhale
Sep 11, 2010 5:58 pm
public override DoRow(Parse row) { int size = row.Parts.Size; DoSomethingWith(size); base:DoRow(row); } ... -- Cheers, Mike Stockdale /fit/Sharp...
16177
Peter Hultgren
peterevjan
Sep 13, 2010 2:10 pm
Hello, I just started working with FitNesse, and we need a ClearCase plugin for it. I've been reading the instructions here: ...
16178
John Penney
johnwpenney
Sep 13, 2010 2:12 pm
Sadly that doesn't work. DoRow() does not appear to be called from a TableFixture. John To: fitnesse@yahoogroups.com From: jediwhale@... Date: Sat, 11...
16179
Mike Stockdale
jediwhale
Sep 13, 2010 3:15 pm
Yes, looks like you'd have to override DoRows private List<int> rowSizes = new List<int>(); public override void DoRows(Parse rows) { for (Parse row =...
16180
Michael Rentschler
mrentschler...
Sep 13, 2010 9:33 pm
Hi, I am using fitnesse with slim and defined my SUT dlls in a suite config file. Problem is, that I cannot figure out how to make the config file work for...
16181
Mike Stockdale
jediwhale
Sep 13, 2010 11:45 pm
You have to use two config files. There's no way to use variables in config files yet. ... -- Cheers, Mike Stockdale /fit/Sharp...