Tagged Questions

1
vote
2answers
80 views

Force library linking with Qt and google test

Hi, 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 …
6
votes
4answers
1k 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 …
1
vote
2answers
72 views

GoogleMock - Matchers and MFC\ATL CString

Hey All, 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 …
0
votes
3answers
122 views

MSTest for huge legacy codebase

Hello, 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 …
2
votes
5answers
273 views

Qt: What unit-testing framework?

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 …
0
votes
1answer
131 views

How to get real code coverage using vsinstr/vsperfmon

Hi, my microsoft-based development environment looks like this: - huge native c++ codebase, seperated into 10 projects - each project has a dependent test project (GoogleTest unit tests), the …
0
votes
3answers
193 views

Unit testing and mocking small, value-like classes in C++

Hi, I am trying to set up some unit tests for an existing c++ project. Here's the setup: I have chosen Google Mock, which includes Google Test. I have added another project (called Tests) to the …
1
vote
1answer
217 views

Switching from MSTest to another unit test framework in VS 2010

Hi, 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 …
0
votes
1answer
45 views

Unit testing mfc application backed with oracle?

App:MFC backed by oracle Unit testing framework:googletest I am going to unit testing the code that will be added here on to the project.Unit testing framework is googletest. I am new to unit testing. …