Private Accessor
The Telerik JustMock PrivateAccessor feature allows you to call non-public members of the tested code right in your unit tests. The feature is enabled for both Free and Commercial versions of JustMock.
For arranging the behavior of non-public members, refer to the Mocking Non-public Members and Types topic.
Calling Private Methods
To call non-public methods with PrivateAccessor, you must:
- Wrap the instance holding the private method
- Call the non-public method by giving its exact name
- Assert against the result value
Let's take the following class as a sample that we need to test:
Sample setup
Example 1: Call non-public method
You can also invoke a non-public method from a mocked instance. The following steps and code snippet demonstrate how to achieve that:
- Create a mocked instance of your class under test (you can also use original instance object and perform partial mocking later on)
- Arrange your expectations
- Then, create a new PrivateAccessor with the mocked instance as an argument
- Call the non-public method by giving its exact name
- Finally, you can assert against its expected return value
Example 2: Call non-public methods from a mocked instance
Using the steps listed above and supplying the type arguments, you can call non-public generic methods as well:
Example 3: Call non-public generic methods
Calling Static Private Methods
To call non-public static methods with the PrivateAccessor, you must:
- Wrap the instance holding the private method by type
- Call the non-public static method by giving its exact name
- Assert against the result value
Following is the sample class we will be using in the next examples:
Sample setup
Example 4: Call non-public static method
If you need to call non-public static methods from a mocked instance, you should follow the steps listed below:
- Setup your class for static mocking (this is not needed if you are to perform partial mocking later on)
- Arrange your expectations
- Then, create new PrivateAccessor with the mocked instance type as an argument
- Call the non-public method by giving its exact name
- Finally, you can assert against its expected return value
Example 5: Call non-public static method from a mocked instance
Like a non-public generic instance methods, you can use PrivateAccessor to call non-public generic static ones, here is the sample test:
Example 6: Call non-public generic static method
Methods with ref and out Parameters
With PrivateAccessor, you can also test non-public methods that use ref or out parameters. The following list summarizes the steps you need to perform:
- Create an instance of the class (mocked or not)
- Arrange the desired behavior using Mock.NonPublic.Arrange
- Create an object[] that will hold the parameter values for the method under test
- Invoke the method using PrivateAccessor
- Assert the result
Let's take the following class as a sample:
Sample setup
And following is how you can arrange tests for the Sum method and its out parameter.
Example 7: Arrange that a private method with out parameter should be called and verify the produced value
Example 8: Arrange that a private method with out parameter should be called and its out parameter should hold specific value
As you can see in our sample setup above, the Add
method accepts a parameter by reference and directly modifies it. Testing methods with ref
parameters is pretty similar to how that is done for the ones with out
arguments. The next examples illustrate that.
Example 9: Arrange that a private method with ref parameter should be called and verify the produced value
Private Async Methods
Invoking private async methods is also not an issue for the PrivateAccessor class. What you should do is to cast the result of the method to the expected type and make sure to await the execution of the logic.
Sample setup
Example 10: Arrange and execute private async method
Get or Set Private Properties
To get or set the value of a non-public property, you should:
- Pass the instance holding the private property to the PrivateAccessor
- Set the value of the private property (Prop to 555)
- Assert that the getter must return the value set above
Sample setup
Example 11: Set private property
When you need to use a mocked instance:
- Create a mocked instance of your class under test (you can also use original instance object and perform partial mocking later on)
- Arrange your expectations
- Then, create new PrivateAccessor with the mocked instance as an argument
- Set the non-public property by giving its exact name
- Finally, you can assert against its expected return value
Example 12: Arrange and get non-public property from a mocked instance
Private Indexer Get and Set
Indexers are special kind of properties that enable objects to be indexed in a similar manner to arrays. Testing private indexers is usually not an easy task but PrivateAccessor enables you to implement it effortless. To achieve that, you should use the get_Item
and set_Item
methods. These methods are internally generated compile-time by the CLR to provide you with access to a getter and setter, respectively.
To show you the usage of this functionality, let's take the following class as a sample that should be tested:
Sample setup
Example 13: Arrange the getter of a private indexer
Example 14: Arrange the setter of a private indexer
Throw the Original Exception When Calling Method
PrivateAccessor is using the reflection API to invoke the required method. When that method throws exception, the reflection API is automatically wrapping it in a TargetInvocationException. This could cause inconvenience in determining what the original problem is.
PrivateAccessor.RethrowOriginalOnCallMethod is a boolean property that solves that problem by controling whether the original exception should be thrown or not. For backward compatibility, the default value is false.
To better illustrate the usage of this property consinder the following code sample:
Sample setup
And here is how a test for the ThrowsException method will look like: