Tagged Questions

5
votes
2answers
280 views

Unmanaged c++ testing framework integration with Visual Studio 2008 (GUI Test runner)

One thing I like about Visual Studio Unit Testing Framework is that all the unit testing is done from withing the IDE, from class definition to running the test having a graphical green/red bar giving ...
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
2answers
386 views

Viewing Google Test results within Visual Studio

Is there a way to view Google Test results within Visual Studio? If yes, how? I'm using Google Test 1.5.0 and Visual Studio 2010 Until now I've been using Google Test from the command line. I've seen ...
1
vote
2answers
337 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
406 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 ...
0
votes
3answers
603 views

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

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 Visual ...