Stand by...

Tag Archive for ‘ gtest’

New training: Google Test – Introduction to asserts and expects

Today I have published first training from Agile C++ Developer series: Google Test – Introduction to asserts and expects. This is my first approach to this kind of training so every comments will be valuable. This training is for Google Test beginners. Have a nice read.

Compile googlemock for Qt SDK 2010.01

After new release of Qt SDK 2010.01 it would be good to have googlemock compiled for it.  So you need to have Cygwin with make, automake, autoconf installed. Run Cygwin console,  add mingw/bin directory to PATH (assuming that you install your Qt SDK into c:\Qt\2010.01 directory) $ export PATH=/cygdrive/c/Qt/2010.01/mingw/bin/:$PATH and in gmock-1.4 directory run configure [...]

Compile googlemock for Qt SDK 2009.05

I have installed Qt SDK 2009.05 and I thought that it would be nice to have googlemock library compiled with mingw compiler included in SDK. I downloaded gmock-1.4.0 from http://code.google.com/p/googlemock/ web page. I unzipped this file and found configure script in gmock directory. Unfortunately Windows doesn’t have tools needed to run it. So I installed [...]