up vote 4 down vote favorite
share [g+] share [fb]

How do I test, private methods and internal classes using Nunit.

link|improve this question

41% accept rate
feedback

3 Answers

up vote 5 down vote accepted

I typically don't. If you thoroughly test the public methods that use private methods and internal classes then you should be able to test the full range of the private functionality without exposing it.

link|improve this answer
feedback

Private methods:

If you're trying to test non-public methods, it usually means you're doing it wrong.

If there's functionality that you want to test, but don't want to make public on your class, the code is trying to tell you something. Your class probably has too many responsibilities. You should seriously consider extracting that private functionality into a new class, writing tests for the new class, and making your old class have a private instance of the new class.

Internal classes:

This one is more valid, especially if you're writing a class library for others to reuse. You may have classes that aren't designed for general use, but that you want to write unit tests for.

For this case, take a look at InternalsVisibleToAttribute.

link|improve this answer
1  
It's also worth noting that InternalsVisibleTo can be used to expose constructors/methods only used by the test assembly and keep those hidden from client code. – jlafay May 3 '11 at 19:23
feedback

You have to expose a means to invoke them, possibly through a test-specific derived class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.