vote up 3 vote down star
2

Hello all :)

I'd like to get started using a Test Driven Development system for a private project, after seeing it used effectively by some by my employer. However, my employer is using C# as their main language -- my personal stuff is all C/C++. While several packages exist for both the Java and DotNet platforms -- NCover, NUnit, etc. -- I find it difficult to find C++ frameworks. Are there any good Unit - Testing frameworks which are free, and provide code coverage statistics, for C++? I'd like to have some idea of how well my tests cover my codebase.

Billy3

flag

9 Answers

vote up 6 vote down

Read this

link|flag
That article rocks! It helped me choose CxxTest as a framework for placing a testing harness on some ugly legacy code. – Pete Jul 21 at 22:42
None of the tools mentioned there support coverage :( Otherwise good find +1 :) – BillyONeal Jul 22 at 2:54
vote up 2 vote down

Well, it doesn't provide code coverage, but Boost's Unit Testing Framework is superb.

link|flag
vote up 2 vote down

Are you developing in Microsoft Visual Studio 2005 or 2008, and if so, do you have Team System installed? If the answer is "yes", then you already have a code coverage tool at your disposal. It's not "free as in GPL", but if you have Team System you've already paid for it and it's installed on your box.

See this article for how to use vsinstr.exe from the command line to instrument your executable, and vsperfmon.exe to collect the run-time data. You can exercise the code any way you like, including through external automated unit test suites such as CppUnit or via manual execution. Viewing the results is slick: Visual Studio gives you a tree with coverage percents, you can expand the tree down to single functions, and if you double-click a function it highlights the executed lines. The only thing I don't like about it is that libraries such as the STL or CppUnit leave a lot of noisy results you have to scroll past, and I haven't figured out how to selectively suppress results of code that are not under my control.

link|flag
I've only got professional :( – BillyONeal Jul 22 at 18:26
vote up 2 vote down

I use boost unit test daily and I am quite happy with that library. I remember reading this post about this subject a time ago. It was a really good summary of the different libraries but today it is a bit out to date.

Another option is the google C++ unit test framework, googletest. I have never used but I've read good opinions about it and it is open source

Regarding the coverage I have used the tool included in gcc, gcov. There is even a gui, ggcov.

link|flag
1  
The link should be code.google.com/p/googletest – Pete Jul 21 at 22:51
+1 for Google Test – BillyONeal Jul 22 at 2:55
Fixed the link, thanks. – fco.javier.sanz Jul 22 at 8:55
vote up 1 vote down

My shop uses a variant of covtool for code coverage. You might find it useful.

link|flag
vote up 0 vote down

You can still use NUnit. Just wrap your Native Classes in C++/ClI managed classes, and write the nunit tests running them. It's a bit of work, but it's worth it for NUnit's testing abilities, and as an added bonus, you'll be able to script your app using IronPython.

link|flag
Are you saying I'd have to write a wrapper for every class in my application? – BillyONeal Jul 22 at 18:25
vote up 0 vote down

I think you may struggle to find a free unit testing framework that'll give you exactly what you require in terms of reporting code coverage.

If you're willing to pay, Bullseye provide a unit testing framework that can report code coverage (it uses instrumentation to achieve this) in a nice interface.

Also, here's a useful article describing a search for C++ unit test coverage.

link|flag
That's sure be nice :) Too bad all my stuff is freeware. :( I'd have to save up for 3 months for that app. – BillyONeal Jul 21 at 21:41
vote up 0 vote down

Not free, but handles C++ and a variety of other languages (C, C#, Java, COBOL, PHP):

http://www.semanticdesigns.com/Products/TestCoverage

link|flag
:( That's two weeks' pay for me. – BillyONeal Jul 22 at 3:14
They pay you $125 per week? $3/hour? I think I'd get a job flipping burgers. – Ira Baxter Jul 22 at 5:39
...sorry, didn't realize your were just 18, probably only have some part time job... – Ira Baxter Jul 22 at 8:05
No, I don't work 40 hours/week hehe. Nah, I understand :P – BillyONeal Jul 22 at 18:24
And I actually get paid a bit more than that but I subtract off stuff like car insurance which is outside of my control ;) – BillyONeal Jul 22 at 18:25
vote up 0 vote down

How about: http://www.xcover.org/documentation/0.2.1/

I haven't tested it myself but planning to.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.