Tagged Questions

CppUnit is a macro-based unit testing framework for C++.

learn more… | top users | synonyms

29
votes
11answers
10k 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 ...
22
votes
2answers
755 views

GoogleTest vs CppUnit: The facts

In the process of setting our C++ unit testing framework for the next years we shortlisted GoogleTest and CppUnit. I have some experience with both and my heavy preference is GoogleTest. Anyways to ...
9
votes
2answers
452 views

A multi-thread implementation of CppUnit?

Could someone point me to a version of CppUnit that would allow to launch the tests in separate threads? The idea is that, because many of our tests are quite CPU heavy (but are not multi-thread and, ...
9
votes
2answers
2k views

boost.test vs. CppUnit

I've been using CppUnit for quite a while now (and am happy with it). As we are using more and more parts of the boost library I had a short look on boost.test and I'm wondering now if I should switch ...
8
votes
5answers
4k 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 ...
6
votes
4answers
875 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 ...
6
votes
6answers
1k views

Unit testing destructors?

Is there any good way to unit test destructors? Like say I have a class like this (contrived) example: class X { private: int *x; public: X() { x = new int; } ~X() ...
5
votes
2answers
282 views

Unmanaged c++ testing framework integration with Visual Studio 2008 (GUI Test runner)

One thing I like about Visual Studio Unit Testing Framework is that all the unit testing is done from withing the IDE, from class definition to running the test having a graphical green/red bar giving ...
5
votes
8answers
1k views

C++ Unit Testing Libraries

I've come across cppunit but it didn't look super-easy to use (maybe I didn't look hard, maybe because C++ doesn't work like Java/C#). Are there widely used, simple alternatives? In fact, is cppunit ...
4
votes
2answers
83 views

mock object woes

We have the following problem: a number of classes that we cannot touch but need to unit test them unfortunately the classes are not designed with unit testing in mind so we issues creating mock ...
4
votes
1answer
98 views

CPPUnit how do I write a test?

Okay I basically want to get the ball rolling and write some CPPUnit tests but I have no idea how to go about it. Here I have some code that basically gets a pointer to the Menu Button for the ...
4
votes
3answers
371 views

Test Driven Development with C++

Looking to start doing TDD in C++. I've seen CPPUnit, but I was wondering if there are other options that people prefer? Thanks for your suggestions!
4
votes
3answers
684 views

How to migrate Cppunit tests into GoogleTest?

I have a bunch of module tests written in CPPunit with some mocks created by hand. I am looking for a way to migrate them to GoogleTest as smoothly as possible. Have you tried such an operation? ...
4
votes
7answers
1k 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 ...
4
votes
3answers
2k views

How to parametrize a test using cppunit

We are using cppunit, i am trying to run the same test using different parameters, running a loop inside the test is not a good option as any failure will abort the test. I have looked at ...
3
votes
1answer
132 views

CPPUnit array assert

I'm kinda new to C++ and even more CPPUnit. Can somebody tell me what should I use to assert for array values (compare them to expected). Should I use memcmp or is there something better in CPPUnit, ...
3
votes
0answers
121 views

Data Driven Testing with cppunit

I'd like to make some data-driven tests using cppunit. I thought I saw a while ago that a version of RowTest was ported to cppunit, but now I can't seem to find it anywhere. What are some ways to do ...
3
votes
2answers
161 views

A consistent and simple group of IDE and tools for embedded code and unit test in C++?

I’m starting a new firmware project in C++ for Texas Instrument C283xx and C6xxx targets. The unit tests will not run on the target, but will be compiled with gcc/gcov on a PC with windows (and run as ...
3
votes
2answers
532 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 ...
3
votes
3answers
973 views

Visual C++ TDD setup

I haven't worked much with Visual Studio before. I've started a personal project in my spare time and I would like to use test-driven development since it has been a huge benefit to me in my Java ...
2
votes
1answer
1k views

How to build CppUnit with Visual Studio 2010

I am trying to build CppUnit (first line in ReadMe says version 1.13) with Visual Studio 2010. Following the instructions (found on web forums, couldn't find much in CppUnit documentation); I cannot ...
2
votes
4answers
2k views

Building/Using CppUnit Library on VS2010

I downloaded and compiled CppUnit to compile with Visual Studio 2010. After the conversion, I could load the CppUnitLibraries, and it gives me cppunit.lib and cppunit_dll.lib/dll. After copying the ...
2
votes
1answer
334 views

CppUnit (or C++ unit tests in general) in Xcode

I've written some ObjC unit tests for use with the OCUnit support in Xcode. Now I would like to do the same for some of the C++ code I'm about to write (a separate static library). Is there any ...
2
votes
1answer
505 views

CPPUnit vs CPPUnit2

I just noticed that CPPUnit2 exists. Is anyone here using it? Or is CPPUnit the more commonly used of the 2? Thanks.
2
votes
2answers
460 views

How the CppUnit will handles the exception

I know that CppUnit will handle the exceptions through: CPPUNIT_ASSERT_THROW(expression,ExceptionType); Can anybody explain theoretically how CppUnit will handle the exception?
2
votes
2answers
233 views

Can CppUnit report results in HTML or XML format?

Does CppUnit have the ability to generate an html or xml file of its test cases and test results?
2
votes
2answers
533 views

Test framework for component testing

I am looking for a test framework that suit my requirements. Following are the steps that I need to perform during automated testing: SetUp (There are some input files, that needs to be read or ...
2
votes
2answers
2k 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 ...
1
vote
1answer
54 views

How to show testmethod names using cppunit

How do I change the output of cppunit from dots, indicating how many tests are done to the actual names of the tests, or maybe just at least the string which was given to the test-caller, as counting ...
1
vote
1answer
61 views

CUnit - 'Mocking' libc functions

I'm using CUnit for my project unit testing. I need to test whether I call libc functions with the right parameters & whether I treat their return values the right way. for example: if I call the ...
1
vote
2answers
67 views

How to install CPPUnit for Visual C++ 2005?

I want to start to do some unit testing however I am really confused about how to setup CPPUnit. I have looked at various tutorials and guides online to find out what to do but there are so many ...
1
vote
0answers
88 views

Measure performace of C++ test suite with Hudson

I am using CppUnit plugin for Hudson to read my test results. How can I measure performance, in terms of run-time of my tests, and show them on my Hudson dashboard? Any plugins, or hacks would be of ...
1
vote
3answers
231 views

How do I unit test a factory?

I unit test my classes by giving all my classes an interface. These interfaces have in turn their own mocks. But lets say I have the following: class IData { GetData() } class ...
1
vote
1answer
226 views

How to test a dll using cppunit

I want to test a Dll using cppunit. I have created a testcase dll. I have linked the .lib file to my testcase dll. I am calling the function to be tested from my testcase dll. But when iam trying to ...
1
vote
0answers
251 views

The example from cppunit_cookbook about addTest doesn't seem to work

I'm trying to use CppUnit test, and this is the simple test code borrowed from CppUnit Cookbook. The system is Mac OS X with g++ 4.2.1. #include <cppunit/extensions/HelperMacros.h> #include ...
1
vote
1answer
252 views

Specifying test dependencies in CppUnit?

I would like to specify the order of testing in CppUnit. According to my research, the testing order depends on either the compiler or linker and how they came across the files. How does one ...
1
vote
2answers
135 views

ASSERT_LESS_THAN or something like this

I am new to cppunit. Is there any way to assert that a value must be less than zero? I am looking for something with similar behavior to CPPUNIT_ASSERT_EQUAL().
1
vote
2answers
512 views

How to run subset of unit tests in CPPUnit by selecting them at run-time?

I am using CppUnit as a unit test framework. Is it possible to select a subset of testcases to execute at runtime? Is there a filtering option provided within CppUnit to accomodate this?
1
vote
2answers
661 views

How to set up a Hudson server to run cppunit tests

I'm having problems setting up my Hudson server to run cpp unit tests so I can output an .xml file. I tried searching the web for some more straight forward instructions on how to set this up but ...
1
vote
1answer
225 views

template specialization for CPPUnit isn't being used

If you've used CPPUnit before, you are probably aware of its assertion_traits class that is templatized to handle arbitrary types. This is what allows it to print the "actual" and "expected" values ...
1
vote
5answers
795 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
376 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 ...
1
vote
1answer
481 views

CppUnit leakage

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 ...
1
vote
3answers
3k 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
2answers
962 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
544 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 ...
1
vote
5answers
1k 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 ...
0
votes
1answer
22 views

CPPUNIT: How to create a instance of TestFixture using its name

I have two test classes called "TT_Common" and "TT_Container" which extends CPPUNIT_NS::TestFixture: class TT_Common : public CPPUNIT_NS::TestFixture ...... class TT_Container : public ...
0
votes
0answers
18 views

How do I write unit tests for an event driven application managed by libevent?

I'm writing an event driven application using the libevent library for asynchronous I/O. Essentially, the application has an evconnlistener listening for data on a port. On receiving data, the data is ...
0
votes
0answers
6 views

Integration cruiseControl with CppUnit

all How get I integrate cppunit with cruisecontrol, if I have already my cppunit tests builded. I need to be able send output of cppunit via email. How can I do it?

1 2