Tagged Questions

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
756 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
6answers
5k views

What unit-testing framework should I use for Qt?

I am just starting up a new project that needs some cross-platform GUI, and we have chosen Qt as the GUI-framework. We need a unit-testing framework, too. Until about a year ago we used an in-house ...
6
votes
1answer
839 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 | ...
6
votes
2answers
2k views

Boost Test Vs Google Test Framework

I am new to Unit Testing world, basically I am c++ developer working on a large product for almost 3 years, and now I've decided to perform automated unit testing of my code. For this I do lot of ...
5
votes
2answers
359 views

Google Test: Parameterized tests which use an existing test fixture class?

I have a test fixture class which is currently used by many tests. #include <gtest/gtest.h> class MyFixtureTest : public ::testing::Test { void SetUp() { ... } }; I would like to create a ...
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? ...
3
votes
2answers
208 views

Does Mock Objects in C++ Always Requires Virtual Methods or Templates?

Suppose I have classes class Inner { public: void doSomething(); }; class Outer { public: Outer(Inner *inner); // Dependency injection. void callInner(); }; Proper unit-testing ...
3
votes
1answer
734 views

How to pass parameters to the gtest

How can I pass parameter to my test suites? gtest --number-of-input=5 I have the following main gtest code. And --number-of-input=5 should be passed to InitGoogleTest(). #include <iostream> ...
3
votes
2answers
500 views

How to capture stdout/stderr with googletest?

Is it possible to capture the stdout and stderr when using the googletest framework? For example, I would like to call a function that writes errors to the console (stderr). Now, when calling the ...
3
votes
2answers
755 views

Writing a Makefile.am to invoke googletest unit tests

I am trying to add my first unit test to an existing Open Source project. Specifically, I added a new class, called audio_manager: src/audio/audio_manager.h src/audio/audio_manager.cc I created a ...
3
votes
1answer
915 views

Switching from MSTest to another unit test framework in VS 2010

Visual Studio 2010 offers a lot of comfortable tools for unit testing via its built in test runner. Unfortunately we can't use MSTest for our unmanaged c++ codebase. Is it possible to switch from ...
2
votes
2answers
141 views

How to test some code using Google test?

Basically I'm trying to start some unit tests in google test but not sure how to go about it. I have been given some code to try and test but I have no idea how to go about doing this. This is some of ...
2
votes
2answers
156 views

More informative asserts in Scala

I'm looking for asserts in the style of Google's testing framework, where something like ASSERT_LT(a, b) will check that $a is less than $b, and if not, will print the values of $a and $b in the error ...
2
votes
1answer
227 views

Can Googletest value-parameterized with multiple, different types of parameters match mbUnit flexibility?

I'd like to write C++ Google tests which can use value-parameterized tests with multiple parameters of different data types, ideally matching the complexity of the following mbUnit tests written in ...
2
votes
2answers
192 views

Convenient method in GoogleTest for a double comparison of not equal?

I'm looking for something similar to the ASSERT_EQ / ASSERT_NE for ASSERT_DOUBLE_EQ. Maybe I'm missing an easy way of doing this without having a ASSERT_DOUBLE_NE?
2
votes
4answers
532 views

How do I prevent qFatal() from aborting the application?

My Qt application uses Q_ASSERT_X, which calls qFatal(), which (by default) aborts the application. That's great for the application, but I'd like to suppress that behavior when unit testing the ...
2
votes
3answers
577 views

Using ASSERT and EXPECT in GoogleTest

While ASSERT_* macros cause termination of test case, EXPECT_* macros continue its evaluation. I would like to know which is the criteria to decide whether to use one or the other.
1
vote
3answers
45 views

How to test multi-parameter formula

I'm refactoring some code that implements a formula and I want to do it test-first, to improve my testing skills, and leave the code covered. This particular piece of code is a formula that takes 3 ...
1
vote
1answer
48 views

Can googlemock mock method calls from within other method calls of the same class?

Is it possible to mock method calls from within other method calls of the same class? I am new to C++ (primarily a C developer) and very new to googlemock and Google Test so forgive me if this is ...
1
vote
0answers
19 views

Google Test: Is there a way to combine a test which is both type parameterized and value parameterized?

I know how to develop a type-parameterized test and value-parameterized test separately. What I am trying to figure out is if it's possible to combine both. In other words, create a generic test which ...
1
vote
2answers
106 views

Generate Google C++ Unit Test XML Report

I am new to using Google test framework for unit testing and am intending to generate an XML report of the tests or the command output as a report (I could just print it obviously). I have read up on ...
1
vote
1answer
78 views

googletest: construct fixtures with parameters?

I have two implementations of an algorithm working on arrays and returning a single value, a slow and naive but correct method A and an optimized method B that may be buggy at corners of the input ...
1
vote
1answer
51 views

Is there something similar to Igloo's LastException in GoogleTest?

I'm taking a look at TDD using GoogleTest and I was doing this kata: http://osherove.com/tdd-kata-1. One of the steps is to throw an exception with a specific string. I know I can test for a ...
1
vote
1answer
125 views

Can makefile.am set LDADD for a set of target?

I placed unit tests within the same directory of source code. But how could I set the LDADD in Makefile.am for all these unit tests to use specific libraries (e.g google test)?
1
vote
1answer
75 views

Testing for crash with google test

In Google Test I would like to be able to do something like this: void ImNotNiceToPointers( void* p ) { ((int*)p) [5] = 1; } TEST( Bla, BlaBla ) { EXPECT_NO_CRASH( ImNotNiceToPointers(NULL) ); } ...
1
vote
2answers
337 views

Visual Studio 2010: Building and development cycle with Google Test?

Using Visual Studio 2010 C++ with googletest. I'm new to unit testing and I've created a test solution to experiment with it. I have three projects in the solution: HelloService (static lib) ...
1
vote
1answer
406 views

Visual Studio C++: Unit test exe project with google test?

Using Visual Studio 2010 C++. I'm experimenting with unit testing and decided to try Google Test (gtest). I have an existing project which compiles to an MFC executable (I'm also interested in how ...
1
vote
1answer
105 views

How to check if Google Test is running in my code

I have a section of code that I would not like to run if it is being unit tested. I was hoping to find some #defined flag that is set by the gtest library that I can check. I couldn't find one that is ...
1
vote
0answers
364 views

Print exception.what() in Google Test

some of my code throws using if (failure) throw std::runtime_error("a bad thing happened: ..."); I am using Google Test and TeamCity to automatically execute my tests. It's running on Windows, so ...
1
vote
1answer
442 views

How to catch an assert with google test?

I'm programming some unit test with google test framework. But I want to check is some asserts are well placed and are useful. So my question is: does exists a way to catch an assert in google test? ...
0
votes
1answer
52 views

Google Test/Mock test fail if expected call is over-saturated

How can I make google test fail if google mocked method is called more than expected times? Here is the example: class MockIO : iIO { MOCK_METHOD1(IO_Read, void (uint8_t)); }; TEST(case, test) ...
0
votes
1answer
64 views

Monitoring Google Test unit testing using Coverage Validator

I have just recently started carrying out unit testing for my software written in Visual Studio 2005 using Google Test Framework. Alongside, I have come across this tool to carry out code coverage ...
0
votes
0answers
36 views

Googletests in executable or static/dynamic library?

Google recommends linking to googletest into a an executable, and executing the tests via command line arguments. I have worked with C# and Java unit testing frameworks and prefer test runners ...
0
votes
0answers
57 views

C++ GoogleTest parametrized fixture produces warning C4018 with Visual Studio

everyone! I'm using Visual Studio 2010, and I'm getting C4018 warning when compiling one of my parametrized fixture tests. I'm not getting this error anywhere else, so I'm a bit puzzled by this. I ...
0
votes
2answers
87 views

Custom EXPECT_NEAR macro in Google Test

Scope: Using Google Test and OpenCV. I'd like to test that my Vec3f equals another Vec3f. Vec3f is a vector in OpenCV of dimension 3 and type float. The ==-operator is defined, so EXPECT_EQ(Vec3f(), ...
0
votes
1answer
54 views

googletest printing COleDateTime values

I have integrated googletest into our MFC application. However while writing tests involving COleDateTime objects I came across the following warning: 1>gtest/gtest-printers.h(169) : warning ...
0
votes
2answers
244 views

Google Mock: object of abstract class type “xyz” is not allowed?

Using Visual Studio 2010 C++ with GMock. Trying to create a stub object for a third party class that is used by my classes but I'm getting the following error: Error: object of abstract class type ...
0
votes
1answer
195 views

Google Test framework

I am working on Google test and facing problems setting up and running even a sample. Can somebody tell the step by step process on how to set up Visual Studio to use gtest and run a sample.
0
votes
1answer
514 views

How can I build a googletest unit test using the gtest_main library with Jam?

I am trying to build a googletest unit test for a proof of concept as a new unit testing framework that we could possibly use. In googletest, there are two ways to write a unit test: with a main, or ...
0
votes
1answer
297 views

GoogleTest: Accessing the Environment from a Test

Hey! I'm trying out gtest for C++ (Google's unit testing framework), and I've created a ::testing::Environment subclass to initialize and keep track of some things that I need for most of my tests ...
0
votes
1answer
965 views

How to get real code coverage using vsinstr/vsperfmon

my microsoft-based development environment looks like this: - huge native c++ codebase, seperated into 10 projects - each project has a dependent test project (GoogleTest unit tests), the sources to ...
0
votes
1answer
112 views

Unit testing mfc application backed with oracle?

App:MFC backed by oracle Unit testing framework:googletest I am going to unit testing the code that will be added here on to the project.Unit testing framework is googletest. I am new to unit testing. ...
0
votes
3answers
603 views

Unit testing and mocking small, value-like classes in C++

I am trying to set up some unit tests for an existing c++ project. Here's the setup: I have chosen Google Mock, which includes Google Test. I have added another project (called Tests) to the Visual ...