Tagged Questions

Google's C++ testing framework based on xUnit that runs on multiple platforms.

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 ...
10
votes
3answers
470 views

Is Google Test OK for testing C code?

So I've come to like and enjoy using Google Test for a C++ project I'm involved in. I'm just bringing up a new project that will be straight C (a library) and so far can't see any reason why not 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
2answers
433 views

Unit Test Output & Project Structure Advice — CMake + Google Test Framework

I'm new to CMake and I'm using the Google Test Framework. I've looked for more complex examples of combining CMake and the Google testing framework, but I've not turned up much luck. I was hoping that ...
6
votes
1answer
838 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 ...
6
votes
3answers
521 views

pass method with template arguments to a macro

I am unable to use Google Test's ASSERT_THROW() macro in combination with multiple template arguments. Consider that I want to make sure that construction of Matrix<5,1> throws: ...
5
votes
4answers
158 views

Method and mock with same class

I have class with 2 methods class A { void Fun() { if(FunRet()>0){///} else {///} } int FunRet() { return 4;} }; I want to test Fun() method depend on what FunRet returns. So i ...
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
2answers
1k views

What are Google Test, Death Tests

I saw the documentation of that feature is seem pretty major since it's in Google Test overview features and detailed in: http://code.google.com/p/googletest/wiki/AdvancedGuide#Death_Tests They look ...
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
2answers
139 views

Google Test - Constructor declaration error

I am trying to create a test fixture class from a normal class with constructor declaration (with arguments) as shown below: hello.h class hello { public: hello(const uint32_t argID, const uint8_t ...
4
votes
1answer
232 views

Comparing/trending test data with googletest and Jenkins

My C++ project uses googletest to produce XML results in the JUnit format for Jenkins. This is working well for pass/fail results and test durations. Some of my tests measure code performance and ...
4
votes
1answer
686 views

Building tests with CMake while not using CTest

Here is what I want to do: Typing make all will build my library and the docs for it. Typing make test will build my lib (if necessary), gtest and then my tests Typing make check runs make test if ...
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
1answer
129 views

Is 'make install' considered harmful?

According to this post the Google C++ Testing Framework considers "make install" a bad practice. http://groups.google.com/group/googletestframework/browse_thread/thread/668eff1cebf5309d The reason ...
3
votes
2answers
216 views

GoogleTest: How to skip a test?

Using Google Test 1.6 (Windows 7, Visual Studio C++). How can I turn off a given test? (aka how can I prevent a test from running). Is there anything I can do besides commenting out the whole test?
3
votes
1answer
103 views

How could I use google test on windows application based on message queue?

I want to use google test for my program that has timer functionality inside. The timer is implement by windows SetTimer(), and there is a message queue in the main() to process the timeout message. ...
3
votes
1answer
119 views

GoogleTest: How to set a breakpoint?

I'm using Visual Studio 2010 C++ with Google test. I have a post-build event on my test project to run the test project. This works and the google test test results are displayed in the visual ...
3
votes
1answer
106 views

How to suppress runtime errors caused by assert() using google test?

I am using google test in a C++ project. Some functions use assert() in order to check for invalid input parameters. I already read about Death-Tests (What are Google Test, Death Tests) and started ...
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
2answers
387 views

Viewing Google Test results within Visual Studio

Is there a way to view Google Test results within Visual Studio? If yes, how? I'm using Google Test 1.5.0 and Visual Studio 2010 Until now I've been using Google Test from the command line. I've seen ...
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
826 views

using googletest in eclipse: how?

I've downloaded google test, but now I've no idea on how to link it to my project in eclipse. Should I add it as a source folder? Should include it as g++ included library? And how can I run test ...
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
3answers
2k views

Use Google Test from Qt in Windows

I have a simple test file, TestMe.cpp: #include <gtest/gtest.h> TEST(MyTest, SomeTest) { EXPECT_EQ(1, 1); } int main(int argc, char **argv) { ::testing::InitGoogleTest(&argc, argv); ...
3
votes
2answers
753 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
771 views

C++ Mock/Test boost::asio::io_stream - based Asynch Handler

I've recently returned to C/C++ after years of C#. During those years I've found the value of Mocking and Unit testing. Finding resources for Mocks and Units tests in C# is trivial. WRT Mocking, not ...
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
50 views

How does one mark a test as anything like “inconclusive” in Google Test?

We have a test that fails if the test suite is not run with administrator rights. This is expected behavior. However, we want to return something other than success from the test suite so that someone ...
2
votes
0answers
92 views

Benchmarking with googletest?

Background (skip to Question below if not interested) I have a simulator that runs through three states: Single threaded startup (I/O ok) Multi-threaded in-memory CPU-bound simulation stage (I/O ...
2
votes
1answer
65 views

Test that check that method return a range of numbers

I wrote method that return random number between two given numbers. Here it's header: int NumRange(int low,int high); I want to check that method really return all the range between those two ...
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
2answers
237 views

Google Test: “char-array initialized from wide string”

I have implemented type-parameterized tests (Sample #6) to apply the same test case to more than one class. It happens that when assigning a string to either a signed char[], unsigned char[], const ...
2
votes
1answer
336 views

googletest and EXPECT_THROW weirdness

I have a class that has no default constructor, but the construct may throw. I was wanting to have a test like: EXPECT_THROW(MyClass(param), std::runtime_error); But the compiler, g++, complains ...
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
1answer
465 views

How to compile googletest on windows using mingw with msys?

My need is simple. I have to compile and use googletest on windows using MinGW with msys. Has anyone some experience doing this? Thanks for answers.
2
votes
3answers
254 views

Googlemock: How to verify elements in an array in an object?

I have a small class: struct Command { uint8_t cmdId; uint8_t len; uint8_t payload[MAX_PAYLOAD]; }; And I want to verify only the first two elements of the payload using a googlemock ...
2
votes
6answers
425 views

Is it good practice to throw an exception in the constructor of a C++ class?

I've got this constructor which throws an exception GenericSocket::GenericSocket(const string& hostname, const string& servname): ...
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.
2
votes
3answers
339 views

C++ linking issue on Visual Studio 2008 when crosslinking different projects on same solution

I'm using Google Test Framework to set some unit tests. I have got three projects in my solution: FN (my project) FN_test (my tests) gtest (Google Test Framework) I set FN_test to have FN and ...
2
votes
1answer
972 views

How to make google-test classes friends with my classes?

I heard there is a possibility to enable google-test TestCase classes friends to my classes, thus enabling tests to access my private/protected members. How to accomplish that?
2
votes
1answer
810 views

Google Test and Visual Studio 2010 RC

Has anyone tried to build gtest 1.4.0 under VS 2010 RC? I get about 400 errors when I try to build it. Thanks in advance.
2
votes
2answers
813 views

Force library linking with Qt and google test

I'm trying to write a test suit for my Qt(c++) application using google test, the main problem is that my application consists of one main program and various shared libs. Everything was working just ...
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 2 3