TFUIers: Let's do a little experiment. Download MS's FlexWiki's source from here: http://sourceforge.net/projects/flexwiki Now install NUnit-2.2.0.msi from: ...
Hi Phlip, I'm tied up with some work at the moment, but I'll try this myself when I can. Meanwhile, check to see if FlexWiki is using an older version of NUnit...
... When I've used NUnit (which is admittedly not a great deal), I've used the text mode runner, and tied it in to the build, so when I build the app, the ...
... [I'm still stuck on twiddling the FlexWiki properties, not knowing what I'm looking for, and drawing comics while DevEnv.exe slowly refreshes its...
... Hm. So after I clickety click click my favorite input device (the mouse) to change each References, separately, from 2.1.4 to 2.2.2, the system still...
This often happens if VS decided to copy an nunit assembly. I've had to completely erase all obj and bin directories, then remove and replace the references....
TFUI: My research has made me an expert at writing technical questions on the MS newsgroup that professionals and MVPs cannot answer. Today's installment is...
... Not answering your question (sorry), but... Why are you TDD'ing against a "golden copy" of the database? IMO you'd be better off working against an empty...
I think your connection is opened exclusively. I have experienced similar situations when I use ADO against the database, but I opened it in Access first and...
... One '69 Camaro has answered how to share the connection, on USENET. I guess this breaks my perfect record of unanswerable questions! But I'm using DAO, not...
[ reposted from news:comp.software.testing ] ... If they were not specific, they would be fragile. Early CR tools broke if you moved a button. The tool...
... As a concrete example of this: if you don't specify menu IDs when using .NET, then they are generated on the fly. This means that the same menu option can ...
At the Agile 2005 conference, Joshua Kerievsky talked about using alternatives to hands-on coaching to "commoditize" training in XP. I found it to be a...
... I liked it. I especially liked the "Giant weird translation layer" comment. :) One thing that surprised me was the testbeds concept. Have you found that to...
Hi All, I know this is slightly off-topic, but my manager is trying to track down automated GUI testing tools. I know the pitfalls of GUI testing, and we've...
... For driving Internet Explorer, try WATIR <http://wtr.rubyforge.org/> It uses Ruby and works by using the COM interface to the DOM. As such, it's restricted...
... such, ... We've been using WATIR for about 7 months now for acceptance testing. It has been very useful for us. It is pretty well designed and easy to...
Cory, I have used NUnitForms, and can recommend it, with this qualification: I've often spent some time writing tests, only to realize that I should be pushing...
Dear Candidates, We are looking for the candidate’s for CMM Level 5 company in Chennai, Bangalore and Hyderabad on the following Skill sets. Position:...
... you want to ... yet. I've got an NUnitForm test working in VS.Net beta 2, but my NAnt build is complaining about: [nunit2] Failures: [nunit2] 1)...
Nevermind... Guess I haven't had enough coffee this morning ;-) My problem wasn't a compile problem, but a runtime problem. Just required a simple DLL copy to...
... Thanks to everyone for the great replies. Yes, we are going to use this to get our existing forms under test while we move over to an MVP pattern. But even...
after a fairly long stint working on rich clients and applying TFUI principles, i'm back on a web project and i'm trying to figure out how to get some of the...
Owen Rogers
exortech@...
Aug 20, 2005 5:05 pm
748
Cory et al., Have you looked into John Robbins's stuff? * http://msdn.microsoft.com/msdnmag/issues/05/01/TestRun/ *...
... Thanks Tony. I've got them marked to read through them (I might even have those mags around here somewhere...). I agree wholeheartedly with a mock...
From: Owen Rogers <exortech@...> ... Owen, Have you looked at NUnitAsp (nunitasp.sf.net)? It handles postback, custom controls, etc. While it doesn't...
... Hmm. I always thought reveal() should be application-specific. The reveal() for IE's DOM would just be spIE->Visible = true;, except reveal() _should_...
Oh. So using Watir in interactive mode is sort of like using reveal. Or you could just put a "wait for user input" in your test script, so the answer to the...
Hi Phlip, On 8/25/05, Phlip <phlip2005@...> wrote: [snip] Next, if you simulate a browser (like with HttpUnit), you can put ... I learned a valuable...