Hi,
I am new to Boost Test framework. I wrote a small test case and put it as a post build event.
#include "stdafx.h"
BOOST_AUTO_TEST_CASE(Test1)
{
BOOST_REQUIRE(false);
}
I got this error after linking.
1>Running Unit Tests
1>'c:\Documents' is not recognized as an internal or external command,
1>operable program or batch file.
Anyone knows how to fix this?
Thanks