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

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 9208 - 9237 of 14129   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9208
... fitnesse works properly, i'm using localhost. .net tests work ok in the same environment (same wiki, different suite). gojko...
Gojko Adzic
gojko_lastname
Offline Send Email
Nov 1, 2007
11:21 am
9209
I have to test a method in a class which connects to the dabasase and retrievs the data from the database. For this i need some other class object as...
girikrishnak
Offline Send Email
Nov 1, 2007
3:08 pm
9210
I actually did download the CppTestTools from fitnesse.org and I my tests work great when I run them with the Fitnesse web pages with my own ...
Kase J. Saylor
kjsaylor
Offline Send Email
Nov 1, 2007
3:08 pm
9211
Here's a screenshot of the resultant HTML. screenshot -Kase...
Kase J. Saylor
kjsaylor
Offline Send Email
Nov 1, 2007
3:09 pm
9212
Does your classpath include a path to the .jar/.class that includes the Snmp class? if the COMMAND_PATTERN doesn't include the %p substitution or PADDSTest...
Dassing, Andrew
andydassing
Offline Send Email
Nov 1, 2007
3:53 pm
9213
The below is a crude framework for a workflow implementation. Workflows (a.k.a. DoFixture, DomainAdapter, System-Under-Test wrapper) are the preferred...
Dassing, Andrew
andydassing
Offline Send Email
Nov 1, 2007
4:08 pm
9214
Is the problem when you are running through the web interface or using the command line runner? Can you try using the hostname rather than localhost? -Ryan ......
Ryan McCullough
thax_1138
Offline Send Email
Nov 1, 2007
5:24 pm
9215
If you are using the command line runner, can you try a 'wget' of one of your fitnesse pages to make sure that another tool can properly download the page. ...
Ryan McCullough
thax_1138
Offline Send Email
Nov 1, 2007
5:24 pm
9216
Hi All, I am working with a customer who is using SetUp to establish his classpath, but it's not working. You can see the !path resolved in the test results...
tbone9992
Offline Send Email
Nov 1, 2007
5:33 pm
9217
In short, no. The !path markups are accumulated up the ancestor tree, and SetUp and SuiteSetUp pages are not in the page's ancestry. To illustrate, presume...
Dassing, Andrew
andydassing
Offline Send Email
Nov 1, 2007
5:56 pm
9218
Awesome clarification. Thanks again Andrew. Tim...
Tim Walker
tbone9992
Offline Send Email
Nov 1, 2007
6:00 pm
9219
Hi Andrew, Just to be clear, while we're on this subject. A variable that is established in the SetUp or SuiteSetUp would be in scope for TestTargetPage but...
Tim Walker
tbone9992
Offline Send Email
Nov 1, 2007
6:15 pm
9220
I have several fixes/enhancements that I would like to get contributed to the sourceforge project. How can I do this? Here is a rough list: fitnesse_base.css: ...
Ryan McCullough
thax_1138
Offline Send Email
Nov 1, 2007
6:19 pm
9221
fitnesse_base.css: Personal preferences for look & feel may be implemented in fitnesse.css which overrides the default settings in fitnesse_base.css. Move...
Dassing, Andrew
andydassing
Offline Send Email
Nov 1, 2007
6:46 pm
9222
Since I'm using a C++ FitnesseServer app, I don't have any .jar/.class files. I set the COMMAND_PATTERN to the complete path to the FitnesseServer app...
Kase J. Saylor
kjsaylor
Offline Send Email
Nov 1, 2007
7:07 pm
9223
I need how to write test tables which can handle arguments and parameteres to the java class. The first and second input fields should be as the parameters to...
girikrishnak
Offline Send Email
Nov 1, 2007
7:07 pm
9224
Hey guys, I have a client that is using Fitnesse and they want to use JProbe's Coverage product to look at the code coverage of the tests. The fixtures access...
Jason Hissong
jhissong
Online Now Send Email
Nov 1, 2007
7:14 pm
9225
RTM: * Review the concepts: http://www.fitnesse.org/FitNesse.ColumnFixture * Review the implementation: http://www.fitnesse.org/FitNesse.FixtureCode ...
Dassing, Andrew
andydassing
Offline Send Email
Nov 1, 2007
7:21 pm
9226
Add some form of the following markup to the top-most page of the JProbe wiki suite: !define COMMAND_PATTERN {java -cp %p <jprobe-wrapper> args %m args} ...
Dassing, Andrew
andydassing
Offline Send Email
Nov 1, 2007
7:39 pm
9227
http://www.sdtconf.com After the great response from the last year's, first Simple Design and Testing Conference [SDTConf] in WestChester, PA, we are planning...
Naresh Jain
nashjain
Offline Send Email
Nov 2, 2007
10:40 am
9228
Dear fitnesse experts, Please show me to ignore remain talbes in the particular page if some condition = true. Here is my scenario 1. Login with some account [...
thienpnguyen
Offline Send Email
Nov 2, 2007
12:35 pm
9229
"How should i handle the parameters as objects to the method and how should i have the returned objects as the value to the field in the fixture tables?" Great...
timander37
Offline Send Email
Nov 2, 2007
1:26 pm
9230
Set up your page in a workflow: * DoFixture, * DomainAdapter, or * !define TEST_RUNNER {fitlibrary.suite.FitLibraryServer} then enable stop on error: !| set...
Dassing, Andrew
andydassing
Offline Send Email
Nov 2, 2007
1:34 pm
9231
Here's one way to do it: Process the page with a DoFixture, e.g., ... public void Login(string theId) { if (IsDisabled(theId) { AbandonStoryTest(); return; } ...
Mike Stockdale
jediwhale
Offline Send Email
Nov 2, 2007
4:32 pm
9232
Thank you very much. Maybe, for .net 1.1 I have to use AbandonStoryTest(Parse theCells). In fact, I tried to use setStopOnError(true) as "Dassing, Andrew" but ...
thienpnguyen
Offline Send Email
Nov 2, 2007
6:20 pm
9233
Andrew, Thank you for the information. That worked. I put that defined that command in the SetUp and it worked for all the tests in that subwiki. Best...
Jason Hissong
jhissong
Online Now Send Email
Nov 2, 2007
8:49 pm
9234
I found this post <http://tech.groups.yahoo.com/group/fitnesse/messages/1901> from 2004 while searching for a solution to a similar problem. I thought I got...
ctttrain
Offline Send Email
Nov 3, 2007
1:29 am
9235
The behavior is correct. Simply put, C() returns A; the setting of B = A is irrelevent because A is invariant in all test cases. ColumnFixture's order of...
Dassing, Andrew
andydassing
Offline Send Email
Nov 3, 2007
4:10 am
9236
B is relevant because I am trying to understand why its value would be reported on the following row. I haven't been able to think of a scenario where this...
ctttrain
Offline Send Email
Nov 5, 2007
1:46 pm
9237
Hello, Iam trying to download Htmlfixture.jar and I could not find one. If anyone could get me a download link I would be thankful. Regards, Sugun....
sugun pradeep
sugunpradeep
Offline Send Email
Nov 5, 2007
1:46 pm
Messages 9208 - 9237 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