CustomClassLoaders in .Net

  • Thread starter Thread starter Christofer Dutz
  • Start date Start date
C

Christofer Dutz

Hi,

me and my team are very new to .Net and C#. We are trying to Unit-Test
some of our software components and in order to test them independantly
we would need to create a custom ClassLoader ... all I could find while
googling was that people complain that they can't get it working. Even
if I add a "-jave" to my query I don't even get a single hit :(

Can anybody give us a hint about where to start ?

Thanx in Advance.
Christofer Dutz
 
Hi Christofer:

As madhu suggested there is NUnit.

If you still need to find a technique for dynamically bringing types
into your unit test framework - look at the Assembly class
(Assembly.Load and Assembly.LoadFrom). These methods will load a
type's assebmly, and you could then create an instance with the
Activator class.

HTH,
 
We are using NUnit ... we only have problems with the classloader stuff.
Since we have to deliver our Project untill Midnight we sopped work on
this issue.

Thanks anyway ;)
 
Back
Top