RE: [Nant-users] Using NUnit Task

2002-10-17 Thread Simpson Chris, Sale
02 21:14 To: '[EMAIL PROTECTED]' Subject: [Nant-users] Using NUnit Task   I am trying to get NAnt and NUnit working in together and experiencing a problem.   After sifting through the NAnt unit test source, it appears that people are using the concept of an AllTests class that examines a

RE: [Nant-users] Using NUnit Task

2002-10-17 Thread Bernard Vander Beken
Message- From: Simpson Chris, Sale [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 17, 2002 11:40 AM To: '[EMAIL PROTECTED]' Subject: RE: [Nant-users] Using NUnit Task As far as I know, the NAnt only supports NUnit 1.1. The attribute based tests using [TestFixture] and [Text]

Re: [Nant-users] Using NUnit Task

2002-10-15 Thread Ian MacLean
Mike, Since you mention the [TestFixture] attributes I'm assuming that you have nUnit 2.0. Currently the NAnt nunit task is still working against nunit 1 which did not use the attributed syntax. We are in the process of updating to NUnit 2.0. Once that is done your tests should run fine. Ian

[Nant-users] Using NUnit Task

2002-10-15 Thread Mike Ratliff
I am trying to get NAnt and NUnit working in together and experiencing a problem.   After sifting through the NAnt unit test source, it appears that people are using the concept of an AllTests class that examines a given assembly for types that inherit from TestCase. Is that the only way