C# allowing Unit Test project to access internal members of another project
Assuming that you have 2 projects in your solution
MySolution + MyProject + MyProjectTestAdd the following line to AssemblyInfo.cs in MyProject
[assembly: InternalsVisibleTo("MyProjectTest")]This will allow you to access internal classes from MyProjectTest(unittests) project
Comments
Post a Comment