Re: [DOTNET] Bizarre NUnit problem with delegates...

2002-04-24 Thread Ethan Smith
CTED] Sent: Wednesday, April 24, 2002 5:16 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Bizarre NUnit problem with delegates... On Wed, 24 Apr 2002 16:45:12 -0400, Ethan Smith <[EMAIL PROTECTED]> wrote: >Yup, we create a new appdomain and run everything in that. And that is >the source

Re: [DOTNET] Bizarre NUnit problem with delegates...

2002-04-24 Thread atul_khare
On Wed, 24 Apr 2002 16:45:12 -0400, Ethan Smith <[EMAIL PROTECTED]> wrote: >Yup, we create a new appdomain and run everything in that. And that is >the source of all these problems. The simplest way around this is to >make sure that the nunit runner (gui or cmd line) is in the same >directory as

Re: [DOTNET] Bizarre NUnit problem with delegates...

2002-04-24 Thread Ethan Smith
- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, April 24, 2002 4:20 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Bizarre NUnit problem with delegates... On Wed, 24 Apr 2002 12:17:38 -0700, Gordon Weakliem <[EMAIL PROTECTED]> wrote: &

Re: [DOTNET] Bizarre NUnit problem with delegates...

2002-04-24 Thread atul_khare
On Wed, 24 Apr 2002 12:17:38 -0700, Gordon Weakliem <[EMAIL PROTECTED]> wrote: >We had seen a similar problem where the object being tested threw a custom exception defined in another assembly, and NUnit had problems loading the exception's assembly. It turned out that even though NUnit said tha

Re: [DOTNET] Bizarre NUnit problem with delegates...

2002-04-24 Thread Gordon Weakliem
We had seen a similar problem where the object being tested threw a custom exception defined in another assembly, and NUnit had problems loading the exception's assembly. It turned out that even though NUnit said that it couldn't load the exception's assembly, the real problem was that NUnitCo

Re: [DOTNET] Bizarre NUnit problem with delegates...

2002-04-24 Thread atul_khare
On Wed, 24 Apr 2002 14:03:52 -0400, Marsh, Drew <[EMAIL PROTECTED]> wrote: >[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] wrote: > >> However, when the test case is invoked, it fails in >> BeginInvoke() because the type TestDelegate() cannot be >> loaded!!! Obviously, everything works just fine if

Re: [DOTNET] Bizarre NUnit problem with delegates...

2002-04-24 Thread Marsh, Drew
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] wrote: > However, when the test case is invoked, it fails in > BeginInvoke() because the type TestDelegate() cannot be > loaded!!! Obviously, everything works just fine if the code > is not invoked from NUnit. Is the assembly that TestDelegate the sam