Tagged Questions

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 ...
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); ...
2
votes
4answers
531 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
2answers
811 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 ...
0
votes
0answers
36 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
220 views

Working with Existing C++ code tested under Google Test and adding Qt

I am working on a program written in C++ using some c++0x features in Linux (Ubuntu). I have written a bunch of tests in Google Test. I am using g++ and plain makefiles which generate dependencies. ...
-1
votes
1answer
139 views

Google Mock giving compile error when attempting to specify a return value

I'm using Google Test and Google Mock for my C++/Qt application. I've been having great success with this setup until just now when I tried this: QList<AbstractSurface::VertexRow> rowList; for ...