Search the web
Sign In
New User? Sign Up
fitnesse
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 10026 - 10055 of 14132   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
10026
Consider the following example, I have expense entries which have a foreign key into a expense category table. Expense (date, description, category_id, amount)...
Gishu Pillai
gishu_pillai
Offline Send Email
Mar 2, 2008
3:46 pm
10027
... SetUp is a special page in any sub-wiki (test suite) that executes before each test. So you can create something like this: ExpenseSuite - mark as suite,...
Gojko Adzic
gojko_lastname
Offline Send Email
Mar 2, 2008
8:31 pm
10028
I'd like to have a way to perform some extra logging in my fixture when a test fails. The problem is of course that the failure is reported on the front-end...
villimucho
Offline Send Email
Mar 3, 2008
8:22 pm
10029
When you start FitNesse, the main method of FitNesse class is first run. In it, command line args are parsed and a FitNesseContext instance is created to store...
emarkowe
Offline Send Email
Mar 3, 2008
8:59 pm
10030
For Java, try overriding check() in your fixture with something like: @Override public void check(Parse cell, TypeAdapter a) { String appendThis = ""; try { ...
Dassing, Andrew
andydassing
Offline Send Email
Mar 3, 2008
8:59 pm
10031
fixtures are not executed in the same process as fitnesse, so command line arguments are not the ones you might expect. fitnesse starts the fitserver...
Gojko Adzic
gojko_lastname
Offline Send Email
Mar 3, 2008
9:06 pm
10032
If you must know the start-up values, I suggest using a few -Dname=value java parameters to create variables that can be accessed via ${} markups. Modify the...
Dassing, Andrew
andydassing
Offline Send Email
Mar 3, 2008
9:45 pm
10033
I created a static string in my base fixture class. Then in each try/catch I append the exception message and stacktrace to the static string. I then added...
Ryan McCullough
thax_1138
Offline Send Email
Mar 3, 2008
11:40 pm
10034
Thanks. It seems a bit more complicated than it has to be, but it might work. ... when ... on ... matches...
villimucho
Offline Send Email
Mar 4, 2008
2:21 am
10035
Hi all! I'm currently investigating the usage of FIT and FitNesse within Maven. For both Maven plugins exist and FitNesse is doing fine. However, I recognized...
karsten.thoms
Offline Send Email
Mar 4, 2008
3:37 pm
10036
It's always been a burden to rename and reorganize fitnesse pages and tables. That's why I developed a little tool called ReFit to do some of the crude work. ...
Johannes Link
jlinkyh
Offline Send Email
Mar 4, 2008
3:37 pm
10037
My c# fixture spawns external test program, which is CppUnit test that ouput results to xml file. Then, I append these results to my fixture table. However...
chrisxiao_usa
Online Now Send Email
Mar 4, 2008
3:39 pm
10038
When FitNesse was developed, the Fit code was forked, for better or for worse, depending on your opinion. So while the functionality is generally comparable,...
Mike Stockdale
jediwhale
Offline Send Email
Mar 4, 2008
3:54 pm
10039
It comes from the FitNesse version. Also, the FitLibrary uses the FitNesse version for batch as well as FitNesse. I'm not sure whether that's the standard...
John Roth
jhrothjr
Offline Send Email
Mar 4, 2008
4:14 pm
10040
I am running into problems trying to get ActionFixture working with PyFit. I have used ActionFixture under Java fitnesse before but not Python fitnesse. I have...
Lars Nordin
lars.nordin
Online Now Send Email
Mar 4, 2008
10:24 pm
10041
All of the original fixtures use one type per method, so you code it exactly the same way you did the press method: _typeDict["enterfunc"] = "String" or...
John Roth
jhrothjr
Offline Send Email
Mar 5, 2008
1:18 am
10042
I was playing around with creating an object library of sorts. I created lots of variables to map object names to xpaths. Things like: !define...
stackedsax
Offline Send Email
Mar 5, 2008
5:50 am
10043
Hello! I've been asked to see if this software would be helpful to test a Web base application. The application collects data from monitoring agents and stores...
jmcauliffe800
Offline Send Email
Mar 5, 2008
4:41 pm
10044
... Thanks for all the help. I have the press function working in my prototype class, that may have just been a missing comma before. My function called by...
Lars Nordin
lars.nordin
Online Now Send Email
Mar 5, 2008
4:41 pm
10045
The speed is limited by the HashMap<> generic's put() speed. Java may be memory thrashing; try allocating more memory to the allocation pool and thread stack...
Dassing, Andrew
andydassing
Offline Send Email
Mar 5, 2008
5:58 pm
10046
Hello, I would like to reorganize a large suite of fit tests. I was planning on doing this with symbolic links - making new pages and linking back to the old...
Shakesta
Offline Send Email
Mar 5, 2008
6:15 pm
10047
Hi, have a look at http://fitnesse.info/webtest - that's the sort of thing you are looking for. -- gojko adzic http://gojko.net...
Gojko Adzic
gojko_lastname
Offline Send Email
Mar 5, 2008
8:09 pm
10048
I already increased the memory quite a lot, but what I found interesting is that if I reduced the size of 'Xss' I actually got better results. If I set the...
stackedsax
Offline Send Email
Mar 5, 2008
8:57 pm
10049
... Nevermind, I figured it out. Adding a parameter to the function and a type definition for that parameter got my function called by "enter" working. ...
Lars Nordin
lars.nordin
Online Now Send Email
Mar 5, 2008
8:57 pm
10050
Hello (Jean I think?), At my current company we are actually using FitNesse in combination with DbFit and the WebTest fixture to write integration tests that...
Marisa Seal
mbjseal
Offline Send Email
Mar 5, 2008
8:57 pm
10051
Maybe you can make use of ReFit (http://johanneslink.net/refit.html) to move the pages to their new home: Check out all pages. Do the moving around. Then check...
Johannes Link
jlinkyh
Offline Send Email
Mar 5, 2008
8:57 pm
10052
Hi Chris, I just verified this but was able to get my example working by setting the "Suite" property on the page that contained the symbolic links. Consider a...
Tim Walker
tbone9992
Offline Send Email
Mar 5, 2008
9:13 pm
10053
Your "enterfunc" is a getter: it has no arguements. The function for enter has to have one argument other than the mandatory self. John Roth Python FIT ... ...
John Roth
jhrothjr
Offline Send Email
Mar 6, 2008
12:50 am
10054
What's even stranger is this: If I break things up into 12 separate pages and include each page on the main page, it loads reasonably quickly. This isn't a...
stackedsax
Offline Send Email
Mar 6, 2008
6:08 am
10055
StackedSax: Just for my edification, can you post an example of some of the !define statements? I'm getting a response time of about 18 seconds with 900...
Dassing, Andrew
andydassing
Offline Send Email
Mar 6, 2008
2:58 pm
Messages 10026 - 10055 of 14132   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help