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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 1763 - 1792 of 14129   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1763
David: First of all, thanks for asking. :-) Based on what I know so far, the design flexibility sounds useful. It does not sound to me like Needless...
Patrick Welsh
patrickrwelsh
Offline Send Email
Sep 1, 2004
2:29 pm
1764
Thanks for your reply Patrick. Funny you should bring up "blank", as that is already implemented (not released) along with "null" and "error" keywords (so now...
David Chelimsky
dchelimsky
Offline Send Email
Sep 1, 2004
3:56 pm
1765
Right now we are both extending fixtures and using TypeAdapters, although for different purposes. I need to do a little research and see if we can get the same...
Eric Heikkila
ericheikkila
Offline Send Email
Sep 1, 2004
4:06 pm
1766
... Good to hear! :) ... Thanks! Please let me know if you find something out or need more details... Cheers, Ilja...
Ilja Preuß
ipreussde
Offline Send Email
Sep 2, 2004
5:35 pm
1767
Hi, As far as I can tell, FIT creates new fixture in SetUp and than new ones for each of test tables. Based on experience with xUnit framework, I expect FIT to...
joel12312
Offline Send Email
Sep 3, 2004
11:37 am
1768
Hi, I need to append a cell to a row in a test table from my fixture. I managed to do so with this ugly code: String tags[] = { "td" }; cells.tag = "<td>"; //...
joel12312
Offline Send Email
Sep 3, 2004
11:38 am
1769
I had a similar experience when I first encountered FitNesse, but I think it stemmed (in my case) from an erroneous desire for FIT to work just like my tried...
David Chelimsky
dchelimsky
Offline Send Email
Sep 3, 2004
2:26 pm
1770
Hi there! I was trying to implement RowFixture example in C#. I wrote a test sample just like that one comes with FitNesse. The class (Item) that I was testing...
jubayer92
Offline Send Email
Sep 3, 2004
4:18 pm
1771
The current release of .NET fitnesse doesn't support properties. There is a version in CVS that does - and this will be in the next release which should happen...
Bob Koss
rskoss
Offline Send Email
Sep 3, 2004
4:20 pm
1772
Here's snippet from RowEntryFixture. protected Parse appendCell(Parse row, String text) { Parse lastCell = new Parse("td", text, null, null); ...
Micah Martin
slagyr
Offline Send Email
Sep 3, 2004
4:29 pm
1773
... Yup, you really don't need much more than that. 'parts' and 'more' are allowed to be null so you can use this convenience constructor rather than the ones...
Michael Feathers
mfeathers256
Offline Send Email
Sep 3, 2004
7:28 pm
1774
There is an odd little workaround you can use right now to actually use the getter side of properties in your fixtures, though you must still refer to them...
Patrick Welsh
patrickrwelsh
Offline Send Email
Sep 4, 2004
2:39 pm
1775
In the next release (coming this week or the following) properties will be fully supported (get or set values). In fact, you’ll now be able to set and get...
David Chelimsky
dchelimsky
Offline Send Email
Sep 4, 2004
4:20 pm
1776
Ok, about the whole TypeAdapter issue.... The way it works now is fairly clunky, and reading through the code is irritating at best :) I haven't taken the...
ericheikkila
Offline Send Email
Sep 4, 2004
4:30 pm
1777
Hi, David. I apologize for not replying to you sooner. I left on vacation after releasing Fit RC1 and I have very limited email access. My perspective is...
Jim Shore
jimlittle82
Offline Send Email
Sep 4, 2004
4:57 pm
1778
... Thanks....
Max Ischenko
joel12312
Offline Send Email
Sep 7, 2004
6:33 am
1779
Hi, I've been wondering if there's a way in Fit to pass values between fixtures? I have a test where I want to input some data into the system ...
utahkay
Offline Send Email
Sep 7, 2004
4:12 pm
1780
There are a couple of ways you can do this. The easiest would be to use the save/recall feature (documented on ...
David Chelimsky
dchelimsky
Offline Send Email
Sep 7, 2004
4:37 pm
1781
Kay, You can use symbols to pass values between fixtures. http://www.fitnesse.org/FitNesse.SymbolsInFixtures is an example of how to do that. In your case, you...
Alain Bienvenue
alain_1817
Offline Send Email
Sep 7, 2004
4:41 pm
1782
I have a row fixture which inspects a large set of name-value pairs. There is a subset of this data that all the pairs have the same name, and I cannot know...
jvanhuis1
Offline Send Email
Sep 7, 2004
7:02 pm
1783
The first column of a RowFixture is assumed to contain unique keys. Since it sounds like you have duplicate keys, RowFixture is not what you want to use. You...
Micah Martin
slagyr
Offline Send Email
Sep 7, 2004
7:21 pm
1784
Thank you Alain and David. What you suggested is working for me now! !|ImportExtractionFile| ... !|CheckSubmittedPersons|submissionId| ... I'm overriding...
utahkay
Offline Send Email
Sep 7, 2004
9:21 pm
1785
Am I correct to assume that one file may have several entries that are all associated with one submissionId? If so, then this is a perfectly fine good ...
David Chelimsky
dchelimsky
Offline Send Email
Sep 8, 2004
2:46 pm
1786
Have you thought about having a RowFixture that uses an ADO.NET DataTable? The columns in the HTML table that FIT uses for such a RowFixture could be the...
Chris Gardner
chris_gardner76
Offline Send Email
Sep 8, 2004
11:10 pm
1787
Thanks for the suggestion Chris. I'll have to give it some thought. My instinct is that it sounds more "unit test"y than "acceptance test"y. Unless you were...
David Chelimsky
dchelimsky
Offline Send Email
Sep 9, 2004
12:50 am
1788
My current project is a mobile device (PDA) project that requires synchronizing boatloads of data from a primary data source for viewing offline. This...
Chris Gardner
chris_gardner76
Offline Send Email
Sep 9, 2004
2:42 am
1789
Thanks for the explanation. Your dilemma is clear and so are the benefits of a DataTableFixture for your particular problem. I can tell you that we're doing a...
David Chelimsky
dchelimsky
Offline Send Email
Sep 9, 2004
2:32 pm
1790
CG, Thanks for the suggestion. I've added a story to add a friendly error message in the case of ClassCastException. Thanks for the props too. Micah Martin ...
Micah Martin
slagyr
Offline Send Email
Sep 9, 2004
4:31 pm
1791
Yes. Thanks. -Kay ... are all ... fine good...
utahkay
Offline Send Email
Sep 9, 2004
5:43 pm
1792
There may be a quick solution. Create a AdoDataTableRowFixture that inherits from RowFixture. It cycles through the DataColumns of each DataRow in the...
Chris Gardner
chris_gardner76
Offline Send Email
Sep 10, 2004
4:14 am
Messages 1763 - 1792 of 14129   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