Archives
-
Unit Testing for Native C++
I often get asked about unit testing native code and quite frankly I’ve never really had a good answer. Until now that is. Maria Blees was kind enough to share a unit testing framework she developed for C++ called WinUnit and I must say I’m really impressed. Go read about it now in her article published in this month’s issue of MSDN Magazine:
-
Looking Back at 2007
As I did last year, I thought I'd provide a quick summary of some of the highlights from 2007.
-
Parallel Programming with C++ – Part 4 – I/O Completion Ports
So far in the Parallel Programming with C++ series I've talked about asynchronous procedure calls (APCs) and how they can be used to build efficient and responsive client applications quite easily by waiting for I/O requests to complete asynchronously without having to create additional worker threads.