Tagged Questions

70
votes
21answers
9k views

Unit testing for C++ code - Tools and methodology

I'm working on a large c++ system that is has been in development for a few years now. As part of an effort to improve the quality of the existing code we engaged on a large long-term refactoring ...
40
votes
12answers
2k views

How do you unit test the real world?

I'm primarily a C++ coder, and thus far, have managed without really writing tests for all of my code. I've decided this is a Bad Idea(tm), after adding new features that subtly broke old features, ...
34
votes
16answers
20k views

How to set up unit testing for Visual Studio C++

I'm having trouble figuring out how to get the testing framework set up and usable in Visual Studio 2008 for C++ presumably with the built-in unit testing suite. Any links or tutorials would be ...
30
votes
11answers
11k 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 ...
26
votes
6answers
11k views

How to setup Google C++ Testing Framework (gtest) on Visual Studio 2005

It is not documented on the web site and people seems having problem setting up the framework. Can someone please show step by step introduction to a sample project setup.
25
votes
10answers
1k views

Our code sucks and I'm powerless to fix it. Help!

Our code sucks. Actually, let me clarify that. Our old code sucks. It's difficult to debug and is full of abstractions that few people understand or even remember. Just yesterday I spent an hour ...
25
votes
6answers
6k views

Are there any good C++ Mock object frameworks?

Does anyone have any experience with Mock Object frameworks in C++? I haven't been able to find much. It appears Google will be open sourcing theirs soon, so I guess it may be best to wait for that, ...
24
votes
2answers
873 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 ...
24
votes
13answers
2k views

How do you introduce unit testing into a large, legacy (C/C++) codebase?

We have a large, multi-platform application written in C. (with a small but growing amount of C++) It has evolved over the years with many features you would expect in a large C/C++ application: ...
24
votes
16answers
10k views

Choosing a C++ unit testing tool/framework

Could you recommend a testing tool/framework to use for testing C++ code in a UNIX environment?
22
votes
11answers
4k views

Free Testing / Code Coverage systems for C++

I'd like to start using a Test Driven Development system for a private project since I saw my employer using it and realized it was very useful. My employer's project was in C# but mines are in C and ...
19
votes
7answers
935 views

Unit testing real-time / concurrent software

The classical unit testing is basically just putting x in and expecting y out, and automating that process. So it's good for testing anything that doesn't involve time. But then, most of the ...
18
votes
3answers
2k views

Optimal Eclipse CDT (C++) experience in March of 2010

I am a student who will be using C++ next quarter. I really enjoyed using the Galileo release of Eclipse with Java and I would like to continue using Eclipse for for C++ development. I am now ...
18
votes
6answers
11k views

Hudson, C++ and UnitTest++

Has anyone used Hudson as a Continuous-Integration server for a C++ project using UnitTest++ as a testing library? How exactly did you set it up? I know there have been several questions on ...
18
votes
8answers
2k views

Test Automation with Embedded Hardware

Has anyone had success automating testing directly on embedded hardware? Specifically, I am thinking of automating a battery of unit tests for hardware layer modules. We need to have greater ...
18
votes
17answers
5k views

C++ unit testing framework

I use the Boost Test framework for my C++ code but there are two problems with it that are probably common to all C++ test frameworks: There is no way to create automatic test stubs (by extracting ...
17
votes
10answers
2k views

How to write good Unit Tests?

Can anyone suggest books or material Unit Tests? Some people consider codes without unit tests as legacy codes. Nowadays, Test Driven Development is the approach for managing big software projects ...
16
votes
13answers
2k views

Unit testing in C++

How do I get started doing unit testing in C++ ? I have used Junit when coding in Java and found it very useful. Is there something similar in C++ ? What do you recommend ?
14
votes
9answers
508 views

Is it possibile to use TDD with image processing algorithms?

Recently, I have worked in a project were TDD (Test Driven Development) was used. The project was a web application developed in Java and, although unit-testing web applications may not be trivial, it ...
14
votes
8answers
7k views

Dependency injection in C++

This is also a question that I asked in a comment in one of Miško Hevery's google talks that was dealing with dependency injection but it got buried in the comments. I wonder how can the factory / ...
13
votes
11answers
3k views

How do you implement unit-testing in large scale C++ projects?

I believe strongly in using unit-tests as an approach to building large multi-platform applications. We currently are planning on having our unit-tests within a separate project. This has the benefit ...
12
votes
2answers
1k views

C++ Jenkins QA Stack / Tools

We are currently in the process of building a QA stack for you C++ development. We already have multiple Jenkins instances running and made very good experiences with the CI server in combination ...
12
votes
5answers
435 views

What is wrong with making a unit test a friend of the class it is testing?

In c++; I have often made a unit test class a friend of the class I am testing. I do this because I sometimes feel the need to write a unit test for a private method, or maybe I want access to some ...
12
votes
6answers
895 views

How to access private class fields from a test using UnitTest++?

I'm facing a nuisance when coding my unit tests using UnitTest++. I'm wondering how to access private member class fields in a clean way (or maybe any way...) By now, I have a solution to access ...
12
votes
6answers
1k views

C++ Unit Testing Legacy Code: How to handle #include?

I've just started writing unit tests for a legacy code module with large physical dependencies using the #include directive. I've been dealing with them a few ways that felt overly tedious (providing ...
11
votes
4answers
727 views

Advice on Mocking System Calls

I have a class which calls getaddrinfo for DNS look ups. During testing I want to simulate various error conditions involving this system call. What's the recommended method for mocking system calls ...
11
votes
9answers
477 views

What is the role of asserts in C++ programs that have unit tests?

I've been adding unit tests to some legacy C++ code, and I've run into many scenarios where an assert inside a function will get tripped during a unit test run. A common idiom that I've run across is ...
11
votes
5answers
5k views

wxWidgets: How to initialize wxApp without using macros and without entering the main application loop?

We need to write unit tests for a wxWidgets application using Google Test Framework. The problem is that wxWidgets uses the macro IMPLEMENT_APP(MyApp) to initialize and enter the application main ...
11
votes
2answers
2k views

How do you specify that an exception should be expected using Boost.Test?

I have a Boost unit test case which causes the object under test to throw an exception (that's the test, to cause an exception). How do I specify in the test to expect that particular exception. I ...
11
votes
7answers
709 views

How do you integrate a TDD approach with VisualStudio?

I am interested in hearing about experiences using TDD and unit testing for C++ in general with Visual Studio 2005 (Professional) First some background. We have a fairly large project and much of it ...
10
votes
5answers
514 views

Could you recommend any open source projects where the source is extensively tested with unit tests?

Programming is learned by writing programs. But code reading is said to be another good way of learning. I would like to improve my unit-testing skills by reading, examining real-world code. Could you ...
10
votes
8answers
1k views

How should I unit test a code-generator?

This is a difficult and open-ended question I know, but I thought I'd throw it to the floor and see if anyone had any interesting suggestions. I have developed a code-generator that takes our python ...
9
votes
6answers
176 views

How to determine if an existing class can be unit-tested?

Recently, i took ownership of some c++ code. I am going to maintain this code, and add new features later on. I know many people say that it is usually not worth adding unit-tests to existing code, ...
9
votes
2answers
225 views

Framework/tool for processing C++ unit tests with numerical output

I am working on a C++ application that uses computer vision techniques to identify various types of objects in a sequence of images. The (1000+) images have been hand-classified, so we have an XML ...
9
votes
3answers
524 views

C++ - Is it possible to implement memory leak testing in a unit test?

I'm trying to implement unit testing for my code and I'm having a hard time doing it. Ideally I would like to test some classes not only for good functionality but also for proper memory ...
9
votes
6answers
331 views

How do you run your unit tests? Compiler flags? Static libraries?

I'm just getting started with TDD and am curious as to what approaches others take to run their tests. For reference, I am using the google testing framework, but I believe the question is applicable ...
9
votes
6answers
3k views

Unit testing MFC UI applications?

How do you unit test a large MFC UI application? We have a few large MFC applications that have been in development for many years, we use some standard automated QA tools to run basic scripts to ...
9
votes
5answers
5k 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 ...
8
votes
3answers
164 views

How to unit test deliberate compilation errors?

Please note that this is NOT a duplicate of How write a unit test for verifying compiling error? as I'm not concerded about testing the correctness of external libraries or the compiler itself. It is ...
8
votes
3answers
245 views

Patterns for unit testing a C++ method that makes a standard library call

I'm writing a C++ class to wrap sockets (I know that there are good libraries for this--I'm rolling my own for practise): class Socket { public: int init(void); // calls socket(2) // other stuff ...
8
votes
1answer
384 views

Boost.Test tests on a static library

I'm using Boost.Test for unit testing. Because of several reasons, I would like to write the unit test cases on different static libraries. The problem is that when I do this, the automatic ...
8
votes
3answers
3k views

Boost.Test: Looking for a working non-Trivial Test Suite Example / Tutorial

The Boost.Test documentation and examples don't really seem to contain any non-trivial examples and so far the two tutorials I've found here and here while helpful are both fairly basic. I would like ...
8
votes
7answers
602 views

How can a Windows program temporarily change its time zone?

I've written a function to return the time_t value corresponding to midnight on a given day. When there is no midnight for a given day, it returns the earliest time available; that situation can ...
8
votes
4answers
355 views

Unit testing. File structure

I have a C++ legacy codebase with 10-15 applications, all sharing several components. While setting up unittests for both shared components and for applications themselves, I was wondering if there ...
8
votes
7answers
473 views

Unit testing with C/C++: Lessons, what to remember?

Unit testing with C/C++: What do you teach people who either did not do unit testing before or come from Java/Junit? What is the single most important lesson / thing to remember/ practice from your ...
7
votes
1answer
954 views

Simplest example of using Google C++ Testing Framework with CMake

I have a very simple C++ library (one header file, one .cpp file). I want to write unit tests for this project using the Google C++ Testing Framework. Here is the directory structure: ~/project1 | ...
7
votes
3answers
271 views

Windows Application Profilers - C++ Exe

I have a bat script which calls out to an exe and starts this off - I dont know what language it is written in (Probably C++) I want to find a profiler that allows me to run a command a few times ...
7
votes
5answers
356 views

Is there a library available which easily can record and replay results of API calls?

I'm working on writing various things that call relatively complicated Win32 API functions. Here's an example: //Encapsulates calling NtQuerySystemInformation buffer management. WindowsApi::AutoArray ...
7
votes
4answers
1k views

Mocking non-virtual methods in C++ without editing production code?

I am a fairly new software developer currently working adding unit tests to an existing C++ project that started years ago. Due to a non-technical reason, I'm not allowed to modify any existing code. ...
7
votes
3answers
496 views

What are good online introductions to testing and Test Driven Development?

I'm looking for an online introduction to unit testing and TDD. I have virtually no experience with TDD, unit testing, or any other agile methodology. My development environment is C++ on Linux. If ...

1 2 3 4 5 9