I too want to try this out. Are you referring here to NUnitAsp from SourceForge ? Thanks, Chak. ... AssertEquals("/Blog/Page.aspx?display=PasswordRequired", ...
Chak
r_chakra@...
Aug 2, 2004 6:55 am
563
... Yes. I gather that there's another thing called NUnitASP, but IIRC that's ... Good luck! Ron Jeffries www.XProgramming.com Agility might be said to be...
If you research your GUI Toolkit’s event queue, and its exact operation, you can often uncover its mechanism to forward raw inputs. Invest this research into...
TFUI: All GUIs have an event queue, and all tests work within or around some slice of the queue, to repress windows, display them on command, and feed them ...
A common manual debugging technique is a lowly print statement. You diagnose a problematic method by printing the value of a local variable. Then you run the...
When a test case temporarily pops up a window, you can often click on it, drive it, and visually inspect its results. If you put trace statements or...
... Not necessarily, not at the raw event/queue level. Framework code may operate at the raw event/queue level, and then send messages to particular objects...
... There's a peculiar situation on w32 (and more explicitly available on X11 systems) that lets you run these kinds of tests without bothering your local...
... We are talking sooo past each other. The best design for a Logic Layer is event-driven, period. Grafting an event-driven GUI onto a procedural Logic Layer...
... Thanks again for the code sample, dude! ... ^ Here. Down where the action is. Write the case (or part of it), and then put a reveal() in, to compare what...
... Noted, but for my philosophy section I just switch to AmigaOS for the examples. There, you just create a background hardware screen, and render any dancing...
Does anyone have any ideas on how to test text ui's on embedded devices such as point of sale terminals? Is there any frameworks/tools that could help? Thanks,...
... What protocol does the terminal use? I doubt it will be memory mapped graphics. Most terminals are addressed by escape codes, such as VT 52 or VT 200. When...
... Here's a Web application's architecture and test options. Our "GUI Layer" splits in two. Most of it ought to execute on the server's side of the HTTP link,...
... Any logical changes? ... Read /Extreme Programming for Web Projects/, by Wallace et. al. ... BDUF and BRUF for logic == bad. BDUF and BRUF for content ==...
... Write a temporary test function called 'reveal()'. It will activate the MS Windows event queue, and allow a testee to paint on the screen, and stay up...
Hello Friends, I require some help in Freeware Testing tools related to J2EE Technologies , and our criteria is looking out for a free tool , which can be...
... The team should also escalate the review of the UI. ... Right - before or after committing to code. ... If I have an application with two GUIs, I call them...
Not finding much with the web searches I've done so far. Anyone know of resources on how to unit test SWT code? Has anyone written mock objects for it?...
Hi to all , i m using a 3rd part grid control bound to an arraylist. How could i test it? Could someone please provide a small sample? should i compare the...
... In what language? With what GUI Toolkit? In pseudo-code, I would write a test like this: suite_test_grid { MyHostWindow aWindow setUp() aWindow.Create() ...
@@SAP Training Online Available!! we are a ERP training center,Job Oriented Training Available!! if u interested in detail,feel free email to(Pls send to all...
... When I TDD GUIs, I also can't wait to see what the graphical output looks like. So I often add a line ... reveal(pongPanel); ... For each kind of GUI...
NUnitAsp v1.5.1 is now available for download. NUnitAsp is a tool for test-driven development of ASP.NET web pages. Version 1.5 includes a modest collection of...
TFUI: In my research into TDD for business GUIs, the most advanced principle is "Broadband Feedback". That refers to using tests to escalate feedback and...
... Can you control which browser the users use? (For a military project, gee I can't guess which browser they are probably ordered to use...) Create your...
... The great thing about HTTP is it forms an undeniable interface right in the middle of your GUI layer. Test-first it by emulating a web browser: ...
... Write a wrapper class with this MessageBox inside it. (Then hunt down and smack the developer who made you override a stinkin' message box just to display...