Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
5answers
1k views

Using “friend”-declarations for unit testing. Bad idea?

[Of course, the question is not restricted to a specific "friend" implementation, feel free though to point out implementation specifics if relevant] Reading through the unanswered questions, I ...
12
votes
3answers
573 views

When should [assembly: InternalsVisibleTo()] be used?

I understand that the InternalVisibleTo attribute is used to expose types and methods with the internal access modifier to a specified assembly. I have only ever used this for exposing internal ...
8
votes
5answers
5k views

InternalsVisibleTo attribute isn't working

I am trying to use the InternalsVisibleTo assembly attribute to make my internal classes in a .NET class library visible to my unit test project. For some reason, I keep getting an error message that ...
6
votes
3answers
188 views

Hide public method used to help test a .NET assembly

I have a .NET assembly, to be released. Its release build includes: A public, documented API of methods which people are supposed to use A public but undocumented API of other methods, which exist ...
5
votes
2answers
114 views

Can I make internals visible to all assemblies signed with same key?

I have an assembly with functionality that I don't want exposed as public but still accessible to my other assemblies. This can be done using InternalsVisibleToAttribute by specifying each assembly ...
5
votes
3answers
135 views

Releasing class library source, without signing key file, but unit-tests requires access to internal classes, what to do?

The situation is as follows: I want to release the full source to a class library I want to release binaries as well, signed by me, with a key file I don't want to publish I will provide batch ...
4
votes
2answers
878 views

Mocking internal classes with RhinoMocks

So I have a bunch of internal classes which I am trying to mock with RhinoMocks. I have added the following line to assemblyinfo.cs: [assembly:InternalsVisibleTo(RhinoMocks.StrongName)] However, ...
3
votes
2answers
171 views

Getting InternalsVisibleTo to work when the build process signs the assembly with strong names?

In our shop, we are using Cruise Control & MSBuild to automate the builds of the product as part of continuous integration. Part of the build is to sign the assemblies so they have strong names. ...
3
votes
4answers
287 views

UnityContainer and internal constructor

I have a class with internal constructor and want to Resolve it from Unity (2.0). public class MyClass { internal MyClass(IService service) { } } then I'm doing ...
2
votes
1answer
345 views

InternalsVisibleTo for dynamically generated assembly, but with strong naming

I have a project that uses dynamic code generation to create a proxy class. This proxy class makes use of internal classes of the project (so that implementation details are not exposed) and so I use ...
2
votes
2answers
2k views

InternalsVisibleTo attribute isn't working

Before I go on I did go through this InternalsVisibleTo attribute ain’t workin'! Hence the title Okay so I had a working version of my project that was using something like the following. ...
2
votes
1answer
367 views

Silverlight security: giving a permission to access anonymous classes to a class library

I'm porting an existing class library to Silverlight. I used lambda expression compilation a lot and now I'm experiencing security problems because of it. In particular, if an anonymous class from a ...
2
votes
3answers
472 views

Non-code-generated forwarding shim for testing private methods

In general, I design classes in such a manner as to not require access to privates for testing purposes. An InternalsVisibleTo can also assist. However, I'm currently dealing with a codebase that ...
2
votes
2answers
907 views

InternalsVisibleTo not working for Managed C++

InternalsVisibleTo is not working for my managed C++ projects, but it is for my C# projects. Any help would be appreciated. Here is a simplified layout. Project A - C#, has an internal property I ...
1
vote
1answer
120 views

How can I make InternalsVisibleTo attribute work by signing a public token key safely?

I am trying to expose some internals to my unit test project by using: [assembly: InternalsVisibleTo("MyTest")] But I am getting the error: Error 1 Friend assembly reference MyTest' is ...
1
vote
2answers
82 views

referencing and storing the strong name externally for reuse

I have a lot of assemblies that have set the InternalsVisibleToAttribute pointing one specifc assembly within the same solution. Unfortunately the assembly that is being pointed to has a stong name, ...
1
vote
1answer
225 views

InternalsVisibleTo - not working in ascx/aspx file

I set the InternalsVisibleTo attribute for the friend assembly. In a controller, I can access the internal class, but if I try to do the same in the aspx/ascx file - "class is inaccessible due to its ...
1
vote
1answer
345 views

Setting Assembly Info for InternalsVisibleTo with MSBuild Community Tasks

I'm using MSBuild Community Tasks to automatically update my assembly version numbers according to my Subversion repository tag. I have added the following to my project file: This gives ...
1
vote
2answers
132 views

There is any way to access directly a dll internal classes without copyright infringment?

I need to use some of the Microsoft.SqlServer.Types library internal classes. This is a .NET dll, which is easily disassembled to the language of my choice. So far I could copy its code to my ...
1
vote
1answer
347 views

InternalsVisibleTo causes CS0246 error: The Type or Namespace could not be found

I am trying to enable one assembly to access another assembly's internal classes by adding [assembly:InternalsVisibleTo("assembly-name")] to the second assembly. However, this causes the following ...
1
vote
1answer
1k views

SGEN, InternalsVisibleTo and assembly signing

I'm trying to do something a bit unusual... I have this class Foo : public class Foo { public Foo(string name) { this.Name = name; } internal Foo() { } public ...
1
vote
2answers
897 views

XmlSerializer and InternalsVisibleTo attribute

Is it possible to make XmlSerializer serialize internal class members by using InternalsVisibleTo attribute? If it is, what assembly should I make my internals visible to. In other words, what ...
0
votes
1answer
69 views

InternalsVisibleTo doesn't work with all assemblies. Some works, some not works

I have a Common DLL which have some internal methods for internal usage. Beside I also have 3 other projects WebServices, UnitTests and PATs In AssemblyInfo.cs of Common project, I added these lines: ...
0
votes
2answers
48 views

moq internal interface in Silverlight 4. “Can not create proxy for types that are not accessible.”

I try to mock an internal interface in Silverlight 4, using moq-silverlight 4.0.10827.0. I get an error "Can not create proxy for types that are not accessible." in a ...
0
votes
1answer
115 views

C# - Security concerns with InternalsVisibleTo attribute

Are there any security concerns with using the InternalsVisibleTo attribute with strong-named assemblies? I understand that the assembly receiving information this way must have the private key to ...
0
votes
3answers
118 views

Cannot create a Mock class for an internal type using Rhino Mocks

I am using Rhino Mocks as a mocking framework for unit testing. I have a class called Subject which is the class I want to test. It has a dependency on IStore. IStore is defined as follows: ...
0
votes
1answer
93 views

InternalsVisibleTo is not working for wpf application

I have the [assembly:InternalsVisibleTo("GuiAssembly")] set in the other assembly but when wpf binding occurs on a class that lives in the other assembly, it throws an exception because of the ...
0
votes
1answer
71 views

Can't get the full public key for 4.0 beta 2 assemblies

I'm having an issue getting the public keys for some of the .net 4.0 beta 2 assemblies so I can make my internals visible to them (gross). Normally, I'd just pop into SN.EXE and poof I'd have them. ...