Code4IT

The place for .NET enthusiasts, Azure lovers, and backend developers

Testing internal members with InternalsVisibleTo

2020-06-02 4 min read Blog

Internal members can be accessed only within the same assembly. And for different assemblies? Here’s for you the InternalsVisibleTo attribute!

Table of Contents

Just a second!
If you are here, it means that you are a software developer. So, you know that storage, networking, and domain management have a cost .

If you want to support this blog, please ensure that you have disabled the adblocker for this site. I configured Google AdSense to show as few ADS as possible - I don't want to bother you with lots of ads, but I still need to add some to pay for the resources for my site.

Thank you for your understanding.
- Davide

Do you remember the internal access modifier? It allows you to access classes, methods and properties only within files in the same assembly.

But sometimes you need to have info about the internal state of that class but within a different assembly. An example is tests: they live in a different project, so a different assembly, but sometimes they need to access the internal properties of a class.

Let’s define a simple class that stores some numbers and calculate its sum:

namespace FluentSumService
{
    public class FluentSumCalculator
    {
        internal List<int> numbers;

        public FluentSumCalculator()
        {
            numbers = new List<int>();
        }

        public FluentSumCalculator AddNumber(int number)
        {
            numbers.Add(number);
            return this;
        }

        public int Result()
        {
            return numbers.Aggregate((a, b) => a + b);
        }
    }
}

A class from another assembly can see only its constructor and the two methods, AddNumber and Result, since they are public.

In fact, you can write something like this:

static void Main(string[] args)
{
    var result = new FluentSumCalculator()
                    .AddNumber(1)
                    .AddNumber(24)
                    .AddNumber(5)
                    .AddNumber(12)
                    .Result();

    Console.WriteLine($"Final result: {result}");
}

which will obviously print Final result: 42.

As you can see from the screenshot here below, the Intellisense does not show the numbers field, since it is internal.

Intellisense shows only public members

So how can you access the internal state, for example for testing that you are storing the new numbers in the numbers field?

InternalsVisibleTo, to the rescue!

For this demonstration I’ve created a test project, FluentSum.Tests. In my example it’s a test project with MSTests, but you can do whatever you want.

To allow an assembly to share its internal properties with another one, you must add an attribute to the namespace:

+ [assembly:InternalsVisibleTo("FluentSum.Tests")]
namespace FluentSumService
{
    public class FluentSumCalculator
    {
      internal List<int> numbers;

That’s it! This attribute allows the whole assembly to share its internals with a friend assembly. The Intellisense is smart enough to suggest you which are the available assemblies.

InternalsVisibleTo attribute

Of course, you’d better build the target project to have it discoverable.

Now you can create tests based that can access the numbers field:

[TestMethod]
public void CheckAddedNumbers()
{
    // Arrange
    var sut = new FluentSumCalculator();

    // Act
    sut.AddNumber(3)
        .AddNumber(6)
        .AddNumber(9);

    // Assert
     CollectionAssert.AreEquivalent(new List<int>() { 3, 6, 9 }, sut.numbers);
}

Wondering what the CollectionAssert class is? Check out the third part of my series about MSTests!

More about InternalsVisibleTo

If you have a look at the documentation for this attribute, you’ll see some interesting things:

[System.AttributeUsage(System.AttributeTargets.Assembly, AllowMultiple=true, Inherited=false)]
public sealed class InternalsVisibleToAttribute : Attribute

This attribute targets only assemblies, so you can apply it only to the whole assembly and not to a single class; this implies that every internal member defined within that assembly can be refenced by its friend assembly.

Notice also the AllowMultiple flag: this allows you to share internal properties to more than one assembly. You can do it in 2 ways:

[assembly:InternalsVisibleTo("AssemblyA")]
[assembly:InternalsVisibleTo("AssemblyB")]

and

[assembly:InternalsVisibleTo("AssemblyA"), InternalsVisibleTo("AssemblyB")]

A real(ish) scenario

Some readers told me that the FluentSumCalculator example is quite useless, so let me add a more useful scenario.

Say that you have a project that is (or is in contact with) the UI. This can be whatever you want: APIs, Blazor pages or an MVC controller. Also, you have a DAL layer in which you have a class that reads data somewhere, for instance some Markdown text, and returns to the UI project that data as HTML text with some others manipulations.

How can you apply the transformation? I’d go with a different class, which accepts some MD text and returns the related HTML content. This class should be marked as internal, since I want it to be accessible to all the classes within the DAL project, but not outside.

Of course, I should test it: without the InternalsVisibleTo attribute that would be hard, if not impossible.

Wrapping up

Defining correct access levels to members and classes is crucial for a good design, as well as having good tests.

If you need to access internals from a different assembly, you can rely on the InternalsVisibleTo attribute.

Happy coding!