I am using NUnit for testing WP7 application (Install-Package NUnit). I created blank WP Class project with such test:
var req = WebRequest.CreateHttp("http://google.com");
There is such error in this test:
System.TypeInitializationException : The type initializer for 'System.Net.WebRequest' threw an exception. ----> System.DivideByZeroException : Attempted to divide by zero. at System.Net.WebRequest.CreateHttp(String requestUriString) at PhoneClassLibrary1.Class1.T() in Class1.cs: line 13 --DivideByZeroException at System.Net.WebRequest..cctor()
How to fix it?