Search the web
Sign In
New User? Sign Up
TestFirstUserInterfaces
? 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 424 - 453 of 1051   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
424
I have some problems using EasyMockNET with C#, trying the samples from Astel's book. When I try to link the view and the controller in GUI using a call to a...
juanma_cervera
Offline Send Email
Mar 1, 2004
8:20 am
425
I also have problems in using EasyMockNET when I uses ArrayList as parameters of the methods. If anybody wants, I can send him a demo project to see the...
juanma_cervera
Offline Send Email
Mar 1, 2004
11:27 am
426
... I have bootstrapped the TFUI Principles for an Exalted Dialog Box in C#. To use this, start a Windows app, paint a single dialog called Form1, and paint on...
Phlip
phlipcpp
Offline Send Email
Mar 1, 2004
7:46 pm
427
... Let's go at this from first principles: - Inspecting a window, instead of writing a test, sucks. - mocking a window won't test. The mock will tell you what...
Phlip
phlipcpp
Offline Send Email
Mar 1, 2004
7:57 pm
428
I am having problems, doing TDD with C#, when using mocks. I have try with EasyMockNET and with NMock, and I have similar problems with methods with ArrayList...
juanma_cervera
Offline Send Email
Mar 3, 2004
10:48 am
429
Hi Juan, let me jump in here and send me your zip file via private mail. Please describe exactly what you expect your code to do and what it doesn't do. Maybe...
Dietmar Leibecke
dleibecke
Offline Send Email
Mar 3, 2004
11:48 am
430
... Please send it to me, then start a new project using this technique: http://groups.yahoo.com/group/TestFirstUserInterfaces/message/426 Don't throw your...
Phlip
phlipcpp
Offline Send Email
Mar 3, 2004
3:44 pm
431
Thanks phlip, How can I reply to your message attaching a zip file from Yahoo Groups? Juan M. Cervera...
juanma_cervera
Offline Send Email
Mar 4, 2004
7:41 am
432
... Use e-mail to send it directly to me (and to Dietmar Leibecke). ===== Phlip http://www.xpsd.org/cgi-bin/wiki?TestFirstUserInterfaces ...
Phlip
phlipcpp
Offline Send Email
Mar 4, 2004
3:03 pm
433
... Sounds righteous. ... Below my sig is the first pass - a tiny Win32 screen-cap program. The second pass would be ImageMagick to convert a sequence of GIFs...
Phlip
phlipcpp
Offline Send Email
Mar 4, 2004
5:47 pm
434
Has somebody know of a framework like Jemmy for TDD of GUIs in C#? Something that let me go from the test to the controls in the user interface without writing...
juanma_cervera
Offline Send Email
Mar 5, 2004
10:30 am
435
... Make them public. Testing a GUI by driving it thru its form breaks the rule "the test should be close to the testee". Think of it this way: When a control...
Phlip
phlipcpp
Offline Send Email
Mar 5, 2004
8:36 pm
436
From: "Phlip" <phlipcpp@...> ... That's a fine rule for unit tests, but for system tests it's often useful to have the test simulate as closely as...
Kevin Lawrence
kevinwilliam...
Online Now Send Email
Mar 5, 2004
10:40 pm
437
... That's for finishing a GUI. My rule is for starting one. Can you test-first thru Jemmy, meaning tell it to expect controls, fault when they are not there,...
Phlip
phlipcpp
Offline Send Email
Mar 5, 2004
10:49 pm
438
... Just checking that I understand your point (please confirm or correct if I got it wrong) because my first hasty - and now deleted - reply missed the subtle...
Kevin Lawrence
kevinwilliam...
Online Now Send Email
Mar 5, 2004
11:18 pm
439
... Caveat: I have never tested a GUI via capture/playback, and have never used Jemmy. I'm not really certain what it is. Anyone here feel free to rescue the...
Phlip
phlipcpp
Offline Send Email
Mar 6, 2004
1:40 am
440
Thank you all for your replies. I was looking for something like Jemmy because it is used in the book that I am studying. ("Test-driven development. A...
juanma_cervera
Offline Send Email
Mar 7, 2004
9:46 am
441
... Make it public. Using a tool that searches for the button and is the same thing as making its click method public and clicking on it. If I wrote a...
Phlip
phlipcpp
Offline Send Email
Mar 7, 2004
4:21 pm
442
... ...calling that, or making the button object public and calling its click() command. ... ===== Phlip ...
Phlip
phlipcpp
Offline Send Email
Mar 7, 2004
4:32 pm
443
... I use Visual Basic .NET. There the controls are protected. This means that if the form is in the same assembly as the tests then you already have public...
Thompson, Errol
kiwietwork
Offline Send Email
Mar 7, 2004
9:41 pm
444
... Firstly Dave Astels uses NUnit, but you have switched to csUnit. I had to replace that with this: using csUnit; Also, I had to add csunit.dll to the...
Phlip
phlipcpp
Offline Send Email
Mar 8, 2004
9:07 pm
445
... We've tried this approach and rejected it because it doesn't test the user's actual experience. Rather, it tests instances of GUI objects on the assumption...
Daniel Gackle
slightlynew
Offline Send Email
Mar 9, 2004
6:27 am
446
... I came to the same conclusion, and decided that it was too hard to do. I remain interested. Ron Jeffries www.XProgramming.com Just because we learned...
Ron Jeffries
RonaldEJeffries
Offline Send Email
Mar 9, 2004
10:14 am
447
... My technique makes refactoring in the GUI Layer safer. You describe the "acceptance test" need. ... That is an example of a Naive Convenience - thanks for ...
Phlip
phlipcpp
Offline Send Email
Mar 9, 2004
2:45 pm
448
... How 'bout these Perl/Ruby options? Win32-GuiTest, Ernesto Guisado Strong support for various controls. ...
Chris Morris
workmo
Offline Send Email
Mar 9, 2004
3:32 pm
449
... In MFC you can say: bool windowWouldBeVisible(CWnd& window) { return (window.GetStyle()&WS_VISIBLE)!=0; } I guess the equivalent is available for C# and...
Anthony Williams
anthony_w.geo
Offline Send Email
Mar 9, 2004
3:46 pm
450
... Could you get around this by simply adding an assert in front of the PerformClick call to check the enabled state of the menu item? That way the test would...
Chris Morris
workmo
Offline Send Email
Mar 9, 2004
4:00 pm
451
... Also, in my previous experience testing forms in Delphi and J++, it was usually necessary to call form.show, form.update (sometimes), to help get the...
Chris Morris
workmo
Offline Send Email
Mar 9, 2004
4:00 pm
452
... http://search.cpan.org/author/ERNGUI/Win32-GuiTest-1.3/ ... http://search.cpan.org/author/TEVERETT/Win32-CtrlGUI-0.30/ ... ...
Phlip
phlipcpp
Offline Send Email
Mar 9, 2004
4:40 pm
453
... It depends on how the lib accesses the widget, and I actually have no experience with the perl/ruby libs yet, so I'm not sure what limitations may exist....
Chris Morris
workmo
Offline Send Email
Mar 9, 2004
5:50 pm
Messages 424 - 453 of 1051   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