How to test C# private methods / SparkyTestHelpers.NonPublic

sparky

Brian Schroer

Posted on March 21, 2021

How to test C# private methods / SparkyTestHelpers.NonPublic

How do you unit test private (or internal or protected) methods, properties and fields?

The short answer, which you'll find if you do a web search for this question, is DON'T:

Google search results say don't test private methods

You can usually indirectly test the behavior of non-public members by testing the public members that use them. If you find yourself wanting to access non-public members from unit tests, it's a "code smell" that the class you're testing should be refactored to be testable.

...Sometimes, though - maybe just temporarily so you can get tests wrapped around "legacy code" that you'll eventually be refactoring out, accessing non-public members from unit tests is a pragmatic choice. Here's how to do it:

If you're using the "MSTest" (Microsoft.VisualStudio.TestTools.UnitTesting) framework, it has a PrivateObject helper that can be used to access non-public members:

PrivateObject privateObject = new PrivateObject(subjectUnderTest);

object response = privateObject.Invoke("PrivateMethodName", 3, 
"test", DateTime.Now);
Enter fullscreen mode Exit fullscreen mode

If you're using a different test framework, or if you want to use easier syntax (to do this thing that I'm telling you not to do 🙂), you can the ".NonPublic()" extension method fluent syntax included in the SparkyTestHelpers.NonPublic NuGet package:

NuGet package | Source code | API documentation

// methods
subjectUnderTest.NonPublic().Method("PrivateMethod").Invoke();
subjectUnderTest.NonPublic().Method("PrivateMethodWithArgs").Invoke(3, "test", DateTime.Now);

object value1 = subjectUnderTest.NonPublic().Method("PrivateFunction").Invoke();
bool typedValue1 = subjectUnderTest.NonPublic().Method("PrivateFunction").Invoke();

object value2 = subjectUnderTest.NonPublic().Method("PrivateFunctionWithArgs").Invoke("test", 3, true);
bool typedValue2 = subjectUnderTest.NonPublic().Method("PrivateFunctionWIthArgs").Invoke("test", 3, true);
Enter fullscreen mode Exit fullscreen mode
// properties
subjectUnderTest.NonPublic().Property("PrivateDateProperty").Set(DateTime.Now);
object value = subjectUnderTest.NonPublic().Property("PrivateDateProperty").Get();
DateTime typedValue = subjectUnderTest.NonPublic().Property("PrivateDateProperty").Get<DateTime>();
Enter fullscreen mode Exit fullscreen mode
// fields:
subjectUnderTest.NonPublic().Field("_stringField").Set("test");
object value = subjectUnderTest.NonPublic().Field("_stringField").Get();
string typedValue = subjectUnderTest.NonPublic().Field("_stringField").Get<string>();
Enter fullscreen mode Exit fullscreen mode

The examples above are for "instance" members. For accessing static members, use .StaticMethod, .StaticProperty and .StaticField:

DateTime dt = subjectUnderTest.NonPublic().StaticMethod("PrivateStaticFunction").Invoke<DateTime>("test", 5);
bool boolValue = subjectUnderTest.NonPublic().StaticProperty("StaticProperty").Get<bool>();
string stringValue = subjectUnderTest.NonPublic().StaticField("_staticField").Get<string>();
Enter fullscreen mode Exit fullscreen mode

MsTest's PrivateObject has a lot of methods with binding flag, type array, CultureInfo, etc. arguments. I honestly don't know when those would be needed, but if you're unable to accomplish what you need to with the fluent syntax described above, you can use this package's SparkyTestHelpers.NonPublic.NonPublicMembers class. It's a "clone" of PrivateObject, and uses the same syntax.

💖 💪 🙅 🚩
sparky
Brian Schroer

Posted on March 21, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

SparkyTestHelpers: Populater
csharp SparkyTestHelpers: Populater

February 23, 2020

SparkyTestHelpers: Scenarios
csharp SparkyTestHelpers: Scenarios

February 19, 2020

Unit testing .NET Exceptions
csharp Unit testing .NET Exceptions

February 18, 2020

SparkyTestHelpers
csharp SparkyTestHelpers

February 17, 2020