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

learn more… | top users | synonyms (1)

0
votes
0answers
16 views

Eclipse (CDT) plugin for running tests and browsing report

Google's answers (hear! hear!) and Eclipse Market Place search results on this topic simply drive me crazy! And apparently the proposed SO answers aren't really helpful either. I'm looking for an ...
1
vote
1answer
26 views

Base method called in Google Test

I am trying to write a binary tree implementation in C++ and I'm testing it using Google Test. In order to test the in-order traversal I am sub-classing the BTree class so that I can override the ...
1
vote
1answer
50 views

Virtual method not called

I am writing a class, BTree, to implement a binary tree in C++ and I am using Google Test to test it. I have created a virtual method, visit(), to the base class which prints out the data from the ...
1
vote
1answer
19 views

Is there any good way to check mock calls if it is copied in Google Mock Framework

I use Google Test and Google Mock for making unit tests and there is a need to check calls of object, which was placed into a std::vector. Like this: TEST(FooTest, someTest) { // Given CSomeClass ...
1
vote
0answers
39 views

Google Mock Destructor

I'm trying to become familiar with Google's mocking framework so I can more easily apply some TDD to my C++ development. I have the following interface: #include <string> class Symbol { ...
0
votes
0answers
21 views

Test local variables using googletest framework

I am new to unit testing. Right now I am trying to test Embedded C code using googletest framework. I have following scenario in my code:- Inside a void function Foo_A there are some local variables ...
2
votes
1answer
47 views

Unit-testing MPI Programs with gtest

I'm parallelizing an already existent application that uses gTest with MPI. In MPI programs, the first thing to do is to initialize the environment with a call to MPI_Init( int *argc, char ***argv ) ...
0
votes
1answer
32 views

Google Mock Actual function call count doesn't match EXPECT_CALL

I am new to GMock and was trying my hand with this code, I also checked this link Actual function call count doesn't match EXPECT_CALL(*mock, display()) but was not able to get proper input. ...
0
votes
1answer
30 views

Unable to build the Test Project that used Google test

I built the google test project. I added the include directories in General -> Addition Include Directories. I added the library directory to the Linker -> Additional Library directories I ...
1
vote
1answer
20 views

How to send custom message in Google C++ Testing Framework?

I use Google C++ Testing Framework for unit testing of my code. I use Eclipse CDT with C++ Unit testing module for output analysis. Previously I used CppUnit it has macros family CPPUNIT*_MESSAGE ...
0
votes
0answers
21 views

mock class function is not getting called during GTEST

I am testing the GTEST, where i am mocking the call function and class, but the mock function is not called, instead original function is called. i had created the mock class, also i had updated the ...
-1
votes
1answer
81 views

How to run gtest using scons

I have a precompiled version of gtest (I know Google advises against it, but that's how our project will use it), and I want to write a very simple test and build it using scons. Assume I have super ...
1
vote
1answer
31 views

Skip compilation of all Googletest unit test classes

My project features many unit tests based on Googletest, i.e. classes inheriting from testing::Test. Each source file folder in the project has a subfolder test/ where these classes are located. I ...
1
vote
0answers
72 views

Working directory for google test in Visual Studio

I have a Visual Studio 2012 C++ solution generated using CMake in which I use google test for unit tests. This works mostly fine, but in one of my tests I want to read a settings file from a local ...
0
votes
0answers
31 views

Is there an open-source VS2012 test adapter for gtest?

I'm looking for a Visual Studio 2012 test adapter to work with Google Test C++ unit testing. Currently using gtest 1.6, but I'm happy with an answer for any version. In addition, I want to use a test ...
-2
votes
1answer
36 views

Can I use GTest to test a single, simple function [closed]

I'm trying to get familiar to gtest and so I want to test a single function like this: int fun(int x=6){ return x; } I'm writing a code like this: #include "gtest/gtest.h" #include "iostream" ...
0
votes
0answers
23 views

Always try to link mock class when using Gmock

class turtle which is in project A, class Mockturtle which is in project B. class rabbit in project B will use turtle, and I need to break the dependency between turtle and rabbit. When I build ...
0
votes
1answer
130 views

how to publish test result report in jenkins?

i want to publish test report which is in xml format generated through google cpp test tool in jenkins through xunit plugin. while configuring plugin we have to specify pattern.Can anyone pls help ...
0
votes
0answers
25 views

Linking against a .lib causes many multiply defined symbols [duplicate]

I downloaded Google Test and built it under MSVC 2010. I then linked its target, gtest.lib (or, gtestd.lib under Debug Configuration) against my executable. The outcome is a long list of multiply ...
2
votes
3answers
111 views

Google test C++ Check if a stream is null

I have a Reference constructor who receive a stream as an argument. Reference::Reference(std::istream& p_is) {} I have to check in unit test with Google Test if the stream is non null. I have ...
1
vote
1answer
94 views

How to test a vitual pure function in C++ and Google Test?

Edited as requested, e.1 : I am stuck on this : I need to test a virtual pure function in Google Test and i cannot get it to work. I keep getting this error in the fixture "ReferenceTest a:" : The ...
0
votes
1answer
53 views

How do I set up code coverage in C++ googletest project in Visual Studio 2010

I have a C++ googletest project building in Visual Studio 2010 professional. This builds a console application which generates XML test result output. How can I set it up to get code coverage ...
0
votes
1answer
58 views

How to install GTest on Mac OS X with homebrew?

I'm trying to install gtest with my packet manager Home Brew but there is no repository for it. I tried to download gtest frome code.google but i cannt understand how to install it, because cmake and ...
1
vote
1answer
71 views

Using Text Fixtures — Google Test

I have a class and I am planning to test it using Google Test Framework. I am curious why is there need for "Text Fixtures"? (as described here: https://code.google.com/p/googletest/wiki/V1_6_Primer). ...
0
votes
1answer
31 views

Can google test handle multithreaded test output on windows

I just hit a problem with boost unit running on windows where the output from multiple threads is not atomic, so it corrupts the output XML which confuses the CI system if I put any tests or messages ...
1
vote
0answers
58 views

How do I set up Google Test with a GNU Make project?

Since there's basically no documentation on the googletest webpage - how do I do that? What I have done until now: I downloaded googletest 1.6 from the project page and did a "./configure && ...
0
votes
1answer
79 views

Compiling/Using Google Test

I am trying to compile and use Google test for my project. I have created .sln and .vcproj files successfully using CMake. Compilation was also successful of the .sln file. But, when I try to follow ...
0
votes
1answer
63 views

using CMake to build Google Test

I am trying to use CMake to build Google Test. As mentioned in the README of Google Test, I have issued following commands: mkdir mybuild # Create a directory to hold the build output. cd ...
0
votes
1answer
92 views

Building/Running Google Test

I am trying to build and run Google Test but encountered some issues. Any help greatly appreciated. I used CMake 2.8 (with UI) to create .sln and .vcproj files in the D:/MyBuild directory (as ...
1
vote
1answer
31 views

Mock non-virtual method giving compilation error

I need to write the gtest to test some existing code that has a non-virtual method, hence I am testing using the below source, but I am getting the compilation error ...
0
votes
1answer
46 views

How to use googletest Failures into Break-Points

I recently discovered the Failures into Break-Points - option from googletest using the command line option gtest_break_on_failure or by defining the GTEST_BREAK_ON_FAILURE environment variable. I ...
1
vote
0answers
54 views

difference between 'function to class' vs 'class to class' for gtest codegen?

'function to class' generates unit test code of class for each function in target code,while 'class to class' genertes unit test code of class for each class in target code. I just wonder what's the ...
2
votes
0answers
202 views

Bamboo's JUnit Parser won't parse my gtest output.xml

I was trying to add some automated Unit Tests to my project with Bamboo and have been facing some problems. The Unit Tests themselves are done with googletest, which creates an XML file which should ...
0
votes
1answer
76 views

Actual function call count doesn't match EXPECT_CALL(*mock, display())

I'm calling EXPECT_CALL on a mocked function display(), but it is returning the run time error Actual function call count doesn't match EXPECT_CALL(*mock, display())... output ...
0
votes
0answers
50 views

compile errors while doing a make , gtest example

i am trying to compile example given in http://www.thebigblob.com/getting-started-with-google-test-on-ubuntu/ . I am getting following error In file included from /usr/include/c++/4.7/vector:70:0, ...
1
vote
0answers
34 views

mock gtest compilation error

i had crated a class say "GTEST_static_class.h" and created a mock for it MockGTEST_static_class.h, after that i am creating GTest_static_example.cpp, which call' the mock class ...
1
vote
1answer
53 views

Using gmock for external dependencies

How to mock out the CustomStream external dependency here with either gmock or gtest? #include <mylib/common/CustomStream.h> namespace sender { void Send(int p1){ ...
1
vote
1answer
31 views

How do I disabled a Googletest (gtest) parametrized test?

Googletest (GTest) allows you to disable individual tests by adding DISABLED_ prefix to the test name. What about parametrized tests -- how do I disable those? Adding the prefix to the test ...
1
vote
1answer
68 views

Using GoogleTest with Bullseye to generate Test Report

I am trying to use GoogleTest and bullseye for testing a C application code. I am in RHEL environment using i686 type processor. I got the gtest and bullseye libraries. Process for writing stubs and ...
0
votes
1answer
64 views

mock method with 11 parameters with gmock

I'm using gmock to mock my dependencies in legacy code. One of the class have a method with 11 parameters. When I tried to use MOCK_METHOD11_WITH_CALLTYPE to mock it, I found this macro doesn't exist. ...
2
votes
1answer
68 views

Google Tests in a DLL

I want to write unit tests using Google Test / Mock for code in my DLL. The test code is supposed to be compiled into my DLL. I read in the Google Test Primer that this is possible, but that gtest ...
2
votes
1answer
81 views

GoogleTest Expect call fail for the mock method

I am new to the GTEST, just understanding the how the Mock works, i tried to write the simple program Foo.h and FooDisplay.h ( which needs the Foo in the constructor), also MockFoo.cpp ( which is the ...
0
votes
2answers
62 views

BOOST_CHECK_EQUAL_COLLECTIONS in Google Test

I have been trying to find an assertion in the Google C++ Testing Framework / gtest which is equivalent to the BOOST_CHECK_EQUAL_COLLECTIONS assertion found in the Boost Test Library. However; ...
2
votes
2answers
100 views

Including gtest libraries in Makefiles for unit test files:

I am currently learning how to make and use MakeFiles for programs in C++. I have been able to create and run Makefiles for normal .cpp classes but I am having a problem with test classes. For testing ...
2
votes
1answer
37 views

GoogleTest - have several setUp() in one fixture

I am unittesting C++ code, and I am running complicated algorithm on huge data sets. I would like to have tests running on a first simple unrealistic dataset, and tests running on reality-like ...
0
votes
1answer
85 views

googletest integrated in CLR/CLI Compilation error LNK2028

Im totally new to google testing in CLI. Just managed to set up and integrate google test with visual studio 2012. However, when I try to include the header file of my project with my tester.h file ...
0
votes
1answer
48 views

gtest :compile error

When I compile gtest samples on Redhat OS(gcc version is 3.2.2),it throw the error as below,howere it compile on Ubuntu it's OK.Pleae help me. Error or Warning: ...
1
vote
1answer
92 views

(make/g++) include full path of auto-generated dependency targets? (or workaround)

[short version] I can't have two source files with the same name in my unit tested c++ project even though they are in different folders. g++ and make are grumpy with each other. (Or maybe I'm being ...
0
votes
1answer
60 views

Linker error - linking two “application” type projects in order to use Google Test

I am trying to test a function with Google Test. It seems that everything is set up correctly, and it builds and executes fine without gtest... (There is a bit of complexity in the code, so I cannot ...
0
votes
0answers
58 views

Jenkins creating TestCocoon report

I have a Jenkins build machine that runs unit tests which are Google Tests built using MSBuild, and contain a TestCocoon listener in the code to create Code Coverage reports. After Jenkins builds the ...

1 2 3 4 5 7