Wednesday 25 November 2009

First Post: Useful Links for me this week.

While testing a secure site in IE8, I noticed a problem in displaying Secure/Un-secure elements of the page. I was able to test this locally without having IE8 installed by using Browser Sandbox

Unit testing a class which contained private methods. I could not access them from the unit test class, without adding the following line to the assemblyinfo.cs file for the project being tested.

[assembly: InternalsVisibleTo("MyUnitTests")]

I also had to change the method declarations in this class to use internal instead of private. This information was gathered from this link