I'v a problem with Fakes Framework and internal class. I've just readed and used the advice here: How to mock/isolate internal classes in VS 2012 with Fakes Framework shims?
but, I still not see internal classes.
I've this solution: ACQTool (class library project) ACQTool.UnitTests (test project)
in ACQTool namespace there is ACQTool.Utils internal class.
in ACQTool/AssemblyInfo.cs I've added these lines:
[assembly: InternalsVisibleTo("ACQTool.UnitTests, PublicKey=57ad8399-13fd-4d4d-90fd-c521c2164d25")]
[assembly: InternalsVisibleTo("ACQTool.Fakes, PublicKey=0024..47bc")]
[assembly: InternalsVisibleTo("Microsoft.QualityTools.Testing.Fakes, PublicKey=0024..47bc")]
After build, I can use ACQTool.Utils in test class, but not exist ACQTool.Fakes.ShimUtils/StubUtils. Help me please.