Hi,
first of all, I'm not sure whether NUnit or Resharper might be the problem. (But problems started after upgrading to latest resharper)
When I start the execution of a test via resharper test runner, the test shows pending for about 60 seconds before even starting the relevant test code. I tracked it down to be a loading/performance issue at RuntimeFramework.cs
Type monoTouchType = Type.GetType("MonoTouch.UIKit.UIApplicationDelegate,monotouch");
The call to the above takes about 60 seconds and will then continue normal test execution.
Does anyone know what the problem might be or how I can track it further down?
What I did so far:
-
Execution with MS Test and NUnitTestadapter: works fine
-
setup a new Solution: no problem of test execution
-
When at the above position in debugger -> execute at immediate window (without the ",monotouch"): Type.GetType("MonoTouch.UIKit.UIApplicationDelegate"); --> returns immediately
Hi,
first of all, I'm not sure whether NUnit or Resharper might be the problem. (But problems started after upgrading to latest resharper)
When I start the execution of a test via resharper test runner, the test shows pending for about 60 seconds before even starting the relevant test code. I tracked it down to be a loading/performance issue at RuntimeFramework.cs
Type monoTouchType = Type.GetType("MonoTouch.UIKit.UIApplicationDelegate,monotouch");The call to the above takes about 60 seconds and will then continue normal test execution.
Does anyone know what the problem might be or how I can track it further down?
What I did so far:
Execution with MS Test and NUnitTestadapter: works fine
setup a new Solution: no problem of test execution
When at the above position in debugger -> execute at immediate window (without the ",monotouch"):
Type.GetType("MonoTouch.UIKit.UIApplicationDelegate");--> returns immediately