1
vote
5answers
110 views
how to use cpp unit
Is there a good book or online site discussing the use of the CppUnit, for a beginner?
1
vote
2answers
56 views
how to turn off a unit test in CPPUnit
I (finally) have my app being unit tested with CPPUnit and I have CruiseControl.NET running the tests and displaying the test output. I have several tests that always fail, however, so CruiseControl …
0
votes
1answer
83 views
CppUnit leakage
Hi all, running my regression tests with valgrind I have this kind of report:
==20341== 256 bytes in 1 blocks are indirectly lost in loss record 915 of 919 …
0
votes
1answer
134 views
overloading operator<< for use with ostream
I am using CPPUnit to test a class in my program. This class (SCriterionVal) is somewhat unique because it has conversion operators for a lot of types (it's essentially a dynamic type value class). …
1
vote
2answers
344 views
vtable problem with cppunit and xcode project
I'm trying to build the zxing iphone project and run the test suites that were written in cppunit-1.12.1. I copied the cppunit-1.12.1 code inside the project, and changing the active SDK to 10.5, I am …
1
vote
3answers
352 views
How to run CPPUnit unit tests
I have written few c++ Unit tests using CPPUnit
But I do not understand how to run those.
Is there any tool like Nunit-gui?
Currently I have written and packed tests in a DLL.
When i google i …
6
votes
4answers
1k views
Comparison of c++ unit test frameworks
I know there are already a few questions regarding recomendations for c++ unit test frameworks, but all the answers did not help as they just recomend one of the frameworks but do not provide any …
3
votes
7answers
345 views
Using CppUnit for memory leak detection
Is anyone aware of extensions to CppUnit that can be used to make assertions on a test by test basis concerning memory leaks.
i.e. CPPUNIT_ASSERT_NO_LEAKS()?
Essentially, I want to be able to fail …
7
votes
6answers
1k views
How can I measure CppUnit test coverage (on win32 and Unix)?
I have a very large code base that contains extensive unit tests (using CppUnit). I need to work out what percentage of the code is exercised by these tests, and (ideally) generate some sort of report …
1
vote
5answers
408 views
Recovering from exceptions using CPPUnit
I have been using CPPUnit as a unit testing framework and am now trying to use it in an automated build and package system. However a problem holding me back is that if a crash occurs during the …
5
votes
3answers
239 views
Linking in test libraries with CppUnit
I'm setting up a bunch of unit tests using CppUnit but am having the problem that none of the tests are being run. The project is divided up into several small libraries and I planned on dividing the …
3
votes
2answers
125 views
“Echo” device for Unit Testing
I'm currently writing up some CPPunit tests for a program that tests a hardware communication port (yes, I'm writing unit tests for a tester app ;-) ). One of the classes I'm testing is basically a …
0
votes
1answer
144 views
Visual Stuido Can not find CPPUNIT debugging database
Hi All,
I am using Visual Studio 2008 with CPPUNIT. I already compiled CPPUNIT and add CPPUNIT path to Include and Library path. Currently, I can compile my program with CPPUNIT library.
However, …
1
vote
2answers
220 views
Cppunit; trying to compile class to test
I am quite new to both C++ and Cppunit. I am trying to compile a little cppunit test. However, I do not succeed.
qwerty@qwerty:~/chessgame/src$ g++ -Wall CoordinateTest.cpp ftest.cpp -lcppunit -o …
1
vote
1answer
214 views
Equivalent of CppUnit protectors for boost::test ?
I've used both CppUnit and boost::test for C++ unittesting. Generally I prefer boost::test, mainly because the auto-test macros minimise the effort to setup tests. But there's one thing I really …
