WIN_ASSERT_TRUE only expects strings
description
This macro only expects strings. However other unit testing frameworks have this macro for numeric values. Currently if I pass in numeric values to this I get build errors. I want to compile at warning level 4, and this macro is getting in the way of that.
So for instance, I want to be able to do this:
WIN_ASSERT_EQUAL( 1, foo->GetNum() );