About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (21)
- Development (217)
- Security (19)
- Test (32)
- Tooling (175)
- Uncategorized (168)
Most used tags
Tag Archives: unittest
Executing Unittests in parallel
My machine has a multi core processor, but my unittests only run one at a time. In Visual Studio 2010 the option to use more than one core and run unittests in parallel is there, but well hidden in the … Continue reading
Posted in Test
Tagged cual-core, Hack, multi-core, parallel, parallelTestCount, Test, testsettings, Tooling, unittest, Visual Studio 2010, xml
Leave a comment
Windows Azure SDK 1.6 update
Today I updated Windows Azure SDK to the latest 1.6 from November 2011. The update was from SDK 1.4 which I uninstalled before installing 1.6. After the update my unittests failed. Short solution below. Commandline to set environment variable: Regedit … Continue reading
Posted in Development
Tagged azure, Azure SDK, commandline, environment variable, Reflector, regedit, SDK 1.6, unittest, Windows Azure, Windows Azure Emulator
Leave a comment
Windows Azure SDK better with wrappers
Since Windows Azure SDK 1.2 back in 2010 I’m trying to get my unittests up and running. I posted about it on the Microsoft forum and consulted the JustMock forum. Nobody was able to provide the solution as it looks … Continue reading
Posted in Development
Tagged azure, decouple, fakes, interface, reference, Rhino mocks, RoleEnvironment, RoleEnvironmentHelper, singleton, telerik, Telerik JustMock, unittest, vs11, Windows Azure, windows azure sdk, wrapper
Leave a comment
Custom AutomationPeer classes
When you use custom controls in your silverlight application, you should implement custom AutomationPeer classes. These AutomationPeer classes will be used in your unittests. Below some different flavours I use in my project. Inherited, when you inherit from a control … Continue reading