Nice. I'll have to take a closer look at trinidad. ________________________________ From: Gojko Adzic <gojko-yahoolist@...> To: fitnesse@yahoogroups.com...
The type name it's looking for is empty - Type '' not found in assemblies - which is very odd. Do you have a full stack trace? ... -- Cheers, Mike Stockdale ...
Hi, I've finished the maven plugin for trinidad, which enables you to run fitnesse fit/slim tests for java in process without starting the server and...
Hi Mike, The problem, I think was the root path which is already dotnet. The path ended up being dotnet\dotnet\[name].dll. So I removed the dotnet in my ...
Hi Mike, I fixed it! The problems I'm having are using the relative paths. By adding the full path to my dlls in the config file...it just works (from the...
Using the FitServer, I simply add the parameters and the page name to the debug tab in page properties. NSlim does not take the page as a parameter. It does...
implement a public static MyEnym parse(String value) in your class (for .NET, it's Parse). Make sure that toString does the reverse operation. -- gojko adzic ...
I'll put in a more informative message. ... -- Cheers, Mike Stockdale FitNesse.NET <http://www.syterra.com/FitnesseDotNet.html> Syterra Software Inc....
Yes, the slim server doesn't ask the FitNesse site for pages, it just sits and listens for requests. The port number is not the FitNesse port number, it's...
So I know that a basic Array fixture woudl be setup like this: Your table would look like: !|MyCollection| ... Your code would be: public class Person { publis...
Hi, I am new to Fitnesse and have started to look at videos from the Fitnesse.org site. As a tester I would like to start using the Fitnesse for acceptance...
ArrayFixture compares the list in your table to the list passed to its constructor. So you might have: public class MyCollection: ArrayFixture { public...
Hi, Just wondering if anyone has encountered stack overflows on the display of pages using this configuration? A number of us are running Ubuntu and the latest...
Yes. I found it a few months ago. I had to completely replace the HTML parser to fix it - it'll be in 0.9. The problem is that the original parser used ...
... John, Thanks for the fast reply. We'll look forward to the new release and upgrade when it is available. In the interim this might be good motivation to...
Is "FindByFirstNamePrefix("B")" a method that returns a List<T>? I'm still confused of this! Basically what I want to do is for the FitNesse table to input a...
... Yes, in my example, this returns a List<Person> ... Fixtures don't really generate a boolean result, they mark cells indicating if actual values matched...
Hello All, I was wondering if some of you could help me with a philosophical discussion of sorts. It is my understanding that FitNesse is supposed to hook...
Like most things, it depends . . . For certain parts of our application, we have the fixture bring up the window, and the fixture exposes hooks into the window...
... Hi Tracy, I would encourage the developers to pull the data validation out of the UI layer for a couple reasons. * First and foremost, it will be much...
... Eric's point is that it's not an either-or kind of decision. The GUI is usually both the most volatile and the most fragile part of an application, and...
... Go to fitnesse.org and start reading. It'll explain pretty much everything. Click on the 'Test Systems' link of the User Guide. ... Robert C. Martin...
... It's not very elegant, but it works. You just pass the column headers into the constructor of the query fixture so that it knows what columns to return. ...