Tagged Questions

gtest is an open source C++ unit testing framework developed by Google.

learn more… | top users | synonyms

15
votes
6answers
3k views

Is there a graphical test runner for “Google Test” ( gtest ) for windows?

Seems a great C++ unit testing framework. I'm just wanting something a bit more sophisticated than the console output for running the test, also something that makes it really easy to run specific ...
10
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 ...
5
votes
4answers
159 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 ...
4
votes
1answer
689 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
12k views

Unable to get hudson to parse JUnit test output XML

EDIT: This issue has been fixed by google in gtest 1.4.0; see the original bug report for more information. I've recently switched to gtest for my C++ testing framework, and one great feature of it ...
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
313 views

gTest and multiple main()

I have an Eclipse project. All testcases are in one *.cpp file. The problem is that this way I end up with two main() functions. One for the app itself and one for the testcases. And Eclipse, of ...
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> ...
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
403 views

How do I set up gtest in Windows Netbeans?

I've looked at the Netbeans forums, gtest wiki & around here & I can't seem to find a way to get gtest working right in Netbeans (6.9.1, Windows 7x64). There's no problem with my #include of ...
2
votes
3answers
280 views

Google test framework: What's the way to access argc and argv inside of a test case

I'm using google test to test my C++ project. Some cases however require access to argc and argv to load the required data.. In the main() method, when initializing argc and argv are passed to the ...
2
votes
2answers
270 views

Integrating 'google test' and 'boost program options'

I have a program that uses google test, and boost program options library for parsing options. The problem is that google test also has it's own option parsers, so I need to filter out before giving ...
2
votes
2answers
3k views

How to set $(OutDir), $(TargetName), $(TargetExt), and %(Lib.OutputFile) with Visual Studio?

I'm trying to build gtest on Visual Studio 2010. After converting the sln file, I tried to build, and I got the following warning messages. Warning 1 warning MSB8012: ...
2
votes
7answers
1k views

How do I unit test a console input class?

In one of my applications I have a class which is responsible for user input. The default method of input is the console (keyboard), and I want to write some unit tests for it to make sure it is ...
1
vote
1answer
43 views

gmock unit testing static methods c++

I just started working on unit testing (using BOOST framework for testing, but for mocks I have to use gmock) and I have this situation : class A { static int Method1(int a, int b){return a+b;} }; ...
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
2answers
65 views

How do I mock non overridden, virtual/non virtual methods of a base classs while unit testing?

I am sorry if this is a duplicate. How do I mock non-overriden non virtual/virtual methods in a base class and test just the derived class's methods? The case here is: I have a base class X which ...
1
vote
2answers
69 views

CMake: how to create a CMakeLists.txt that runs ./configure once?

How do I create a CMakeLists.txt for gmock to configure only once? I tried: ADD_CUSTOM_TARGET( gmock DEPENDS ${CMAKE_CURRENT_LIST_DIR}/gmock-1.6.0/lib/.libs/libgmock.a COMMAND cd ...
1
vote
0answers
40 views

config gtest to show failed test only in console

Is there an option to show only failed tests? I had to switch to use Guitar to achieve this, but I miss command line tool. Thanks in advance.
1
vote
1answer
217 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
168 views

Googletest on VxWorks 6.6 + / Wind River 3.0

Has anyone successfully ported googleTest to a real time process in WindRiver 3.0 / VxWorks 6.6 ? I am able to get gtest to build, but I get a few errors when linking. I can modify these specific ...
1
vote
2answers
396 views

Using Google Mock with boost::bind

I have a class whose constructor takes a Boost function, and I'd like to test it with Google Mock. The following code shows a sample class and my attempt to test it: MyClass.h: #include ...
1
vote
0answers
387 views

Color text in eclipse console for output text from google c++ testing framework

I would like Eclipse (Helios) console to display colored text when running unit tests using Google C++ test framework. I have tried the Industriallogic plugin but it does not work with Helios. Is ...
1
vote
0answers
152 views

Visual Studio and Google Test: Forcing Re-Run of Test Project When Dependencies Change

I have a set of Google Test-based unit tests for a native C++ DLL I'm developing. The DLL is in its own project, and the test project is dependent upon it. The test project has a Post-Build Event ...
1
vote
4answers
373 views

Difference between double comparisons in gtest (C++) and nunit (C#)

I have done porting of a c++ project with gtest tests to a c# project having an nunit test. Now I encounter problems with floating point precision. in the nunit test I have being not ok (red) ...
1
vote
1answer
242 views

Passing a typename and string to parameterized test using google test

Is there a way of passing both a type and a string to a parametrized test using google's test. I would like to do: template <typename T> class RawTypesTest : public ...
1
vote
1answer
236 views

gtest output not appearing in visual studio output window after including msxml4

I have gtest all setup and running fine with Visual Studio 8. I've included msxml 4.0 in my build and now the test output won't show up in the visual studio output window. The application will run ...
1
vote
1answer
2k views

Setup Google Test (gtest) with Eclipse on OS X

What is the procedure to setup Google Test to work under Eclipse on Mac OS X? I followed the instruction in README to compile and install gtest as framework from XCode. Now I want to use gtest with ...
1
vote
3answers
909 views

c++ namespace collision with gtest and boost

If I include both gtest/gtest.h and boost/math/distributions/poisson.hpp I get /opt/local/include/boost/tr1/tuple.hpp:63: error: ‘tuple’ is already declared in this scope ...
0
votes
0answers
40 views

Compiling google test framework with Mingw compiler

I have a Qt project and i wanted to use google tests framework GoogleTestFramework in order to do google test. The framework compiled fine on Linux. I have managed to compile the libraries on ...
0
votes
1answer
33 views

Error in gtest-printers.h while intergrating GTest to my project

Iam getting the following error while building my project C:\gtest\gtest-1.6.0\include\gtest/gtest-printers.h(327) : error C2220: warning treated as error - no 'object' file generated ...
0
votes
1answer
40 views

Unit Test for Callback using GTest

This is the Class design for Device Discovery Library in the network using Bonjour.I need to develop Test case for it using GTest.I am new to GTEst. Client Program need to implement ...
0
votes
1answer
23 views

Unit test xml generator using XSD

I'm developing an app that generates XML. What's the best approach to unit test generation code? I use C++, gtest, gmock. I suppose one of them is to generate XML in test code and check if it ...
0
votes
0answers
28 views

Combining c++ google tests with media testing software

I am currently testing an media library and automating c++ tests using google test. My google tests create calls and return call states i.e. connected, ringing etc. However this only tells me the call ...
0
votes
1answer
179 views

How to start working with GTest and CMake

I have recently been sold on using CMake for compiling my C++ projects, and would now like to start writing some unit tests for my code. I have decided to use the Google Test utility to help with ...
0
votes
1answer
86 views

How can I generate HTML report for gtest results (XML files)?

I tried to use junitreport but XML file content is not well recognized. @dmeister http://code.google.com/p/googletest/issues/detail?id=114 [...] Google Test was designed to match our internal ...
0
votes
1answer
43 views

How to setup gtest in my visual studio project

I simplify my question. Should I create test files in related project or separate test project?
0
votes
1answer
151 views

error: 'int main(int, char**)' previously defined here in C++

I'm implementing gtest now, and it gives me an error : main previously defined here. Here's utest.cpp // Bring in my package's API, which is what I'm testing #include "../src/test.cpp" // Bring in ...
0
votes
3answers
123 views

Where do I place the Unit Testing source and expose the internal components?

I am taking over a project that exposes components via ATL. I see two major areas for the unit test to cover with this setup: Testing the internal components (may or may not be exposed via COM) ...
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
94 views

cmake <-> make and unit testing: creating targets that don't compile unless named explicetly

I want to structure my unit tests, using gtest, in modules. each module is often a collection of multiple testible units. whilst developing a module i create a unit test at a time, and once finished I ...
0
votes
2answers
111 views

gtest problem with inline function

hello i have which include inline function, when i try testing this class with google test, i have error like: error LNK2019: unresolved external symbol "public: double __thiscall ...
0
votes
1answer
73 views

Exlude time test

Hello i have some class for example "Math": header file: class Math { public: Math(void); double returnPi(); ~Math(void); }; and cpp file: #include <windows.h> #include "Math.h" ...
0
votes
1answer
167 views

How to build some project configurations with msbuild

The gtest's msvc directory has the gtest project file, and opening it with Visual Studio enables me to select the build out of 8 configurations(gtest/gtest_main/gtest_prod_test/gtest_unittest x ...
0
votes
2answers
328 views

C++ Program quits unexpectedly, how do I debug this with gdb?

I am writing a program that runs some unit tests on code that that been written by my colleagues. I am using the Google C++ testing framework. I run a function that spawns 3 threads, and then runs for ...
-1
votes
2answers
52 views

google mock : how can I “ EXPECT ” that no method will be called on a mock

I want to test the in case of some fail no method will be called on a mock object , using google mock. so the code be something like: auto mocObj = new MockObj; EXPECT_NO_METHOD_CALL(mocObj); //this ...