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
765 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 ...
6
votes
1answer
848 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
3answers
525 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
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
361 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
140 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
3answers
688 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
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
209 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
740 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
842 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
502 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
761 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
773 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 ...
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
93 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
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
337 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
230 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
469 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
255 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
427 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
194 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
3answers
581 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
1answer
981 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
812 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.
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
2answers
92 views
Derived exception class not caught
Starting to use the googletest ASSERT_THROW clause, it seems that 'sometimes' the base type of the thrown exception is handled. I reduced the relevant code section to this:
// myexception.h
struct ...
1
vote
1answer
85 views
How can I test methods that depends heavily on MFC with GTest
I've started to use GTest (Google Test) for a C++ project I'm working on. I have one class that depends heavily on MFC (CFile, CObject, CString, etc.).
How can I break the dependencies on MFC (or ...
1
vote
1answer
79 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
102 views
C++, google test/mock: assertion to test and object type
I have this (not really, is just a simple example):
template<class T>
T foo() {...}
I need to check the result type of the function (here not make any sense, my example is more complex I ...
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
2answers
340 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
218 views
What's the difference between gtest.lib and gtest_main.lib?
Google's C++ Test Framework has two output libraries: one is gtest.lib and the other one is gtest_main.lib. According to Nik Reiman's answer on how to setup gtest with Visual Studio, we should link to ...
1
vote
1answer
408 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
1answer
51 views
Applying tests for superclass on derived class
Say you have a C++ class B derived of class A. You have extensive tests set up for class A that you would also like to run over instances of class B, as it should fully support A's functionality. Of ...
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
443 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?
...
1
vote
2answers
473 views
GoogleMock - Matchers and MFC\ATL CString
I asked this question on the Google Group but I think I will get a faster response on here.
I'm trying to use Google's Mocking framework to test my code. I am also utilizing their test framework as ...
1
vote
3answers
811 views
MSTest for huge legacy codebase
we have a huge codebase with about 1000k lines of native/unmanaged legacy c++ - code and we are going to provide the code with unit tests and MSTest would fit perfectly in our current development ...
0
votes
1answer
27 views
Google Mocks test output to XML not working
I have been using Google Test for a few months now and I have
--gtest_output=xml:$(TargetDir)\$(SolutionName).unittest.results.$
(Configuration).xml
as command Arguments in the VS2010 Test ...
0
votes
2answers
78 views
googletest friendly alternative to C++ assert()?
I'm writing a new class where I have inserted a C++ assert() to verify correctness of state.
I would like to use googletest to verify that this assert is being called in the way I expect, but I can't ...
0
votes
1answer
54 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)
...