Archives
-
Which test runner are you using ?
Fabio Maulo is doing a poll to find out which test runners people are using:
-
TestDriven.Net 2.23 Beta β Cleaner Stack Traces
You have probably noticed with previous versions of TestDriven.Net, stack traces could turn into an unruly mess of file path information.
-
TestDriven.Net 2.23 Beta β Faster!
It turns out that the JIT compiler for x64 is considerably slower than for x86 (and uses more memory). You can easily improve the startup time for your EXE projects by changing them to compile for x86. In fact this is what Microsoft is doing in Visual Studio 2010 (the default for EXEs will be x86). Itβs only worth compiling EXEs for AnyCPU if your application might use a lot of memory. See Rick Byersβ post on the subject: AnyCPU Exes are usually more trouble than they're worth.