I am using boost :: test with Visual Studio 2010 in a Win32 console project. boost :: test seems to take care of the function main()by providing its own. It seems like I do not need to provide main().
The thing is, I want my console output not to disappear right away, but that means that I need to somehow define the function main()so that it stays on the screen. The thing is, any attempts that I make to redefine main()seem ignored.
I know that Cppunit can output test results at compile time - does boost: test have something like this?
source
share