1. A 3. NUnit2 4. To facilitate debugging, we use the
<solution> task. In some cases, we need some prebuild and postbuild steps
in VS to support things like using CodeSmith for our codegeneration. 5. Use NReport to compile them and feed
them to CruiseControl (or Draco if you want). CruiseControl then e-mails
results as needed, and facilitates storing them. 6. I’ll cover the high points briefly
as this isn’t a “how do I test” mailing list. If you have
other questions, it may be recommended to ask offlist. I’m not facing this problem now, but
when I worked at Oracle, the solution my team came up with was to have a _transient_ gold set of tables exported to
a fileset. Gold files become a maintenance nightmare very quickly, but I’m
willing to bear the expense of transient ones and a very few select gold files. Testcases look like (all *automated*
as part of the testing except, probably, for the Setup portion,
which is one time anyways):
Eric D From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Jaroslaw Kowalski Hi guys, I'd like to know how do you use NUnit with NAnt? Specifically (I'd like to hear about pros and cons of the
way you use NUnit): 1. Which version of nunit.framework.dll do you use: a) the one that comes with NAnt
(framework-specific) b) the one installed by NUnit
installer or c) some binary version that comes with
your application d) some version from the GAC 2. What's the best way to locate the nunit.framework.dll to
be used in <references> ? 3. Do you <exec> nunit-console.exe or use
<nunit2>? 4. Do you support dual compilation/running of test cases
(using both VS.NET and NAnt) ? How do you deal with it? What about
configuration file management? 5. What do you do with the test results (email, store in
VCS, discard)? 6. (this is not related to NAnt) What's the best way to test
your application against a database? Do you use a separate database? How do you
create it? How do you specify the configuration settings? How to you check your
database contents for correctness? How do you deal with transactions in the
test cases? Jarek |
- RE: [Nant-users] NUnit with NAnt Eric Deslauriers
- RE: [Nant-users] NUnit with NAnt Ryan Davis