Stand by...

Tag Archive for ‘ C++’

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.

How to test main()?

When you are doing Test-Driven Development you try to test what ever you wrote. Better you write tests before you write any line of code. But finally when you have your brand new functions and classes (all 100% covered by tests) you have to integrate it in some working software. In the very end (or begining) you have to write main(int, char**) function. How do you test it using Unit Tests?