From: Jano Svitok Date: 2008-02-13T05:55:09+09:00 Subject: Re: How do C programmers do unit testing? On Feb 12, 2008 6:12 PM, Eric Mahurin wrote: > > On Feb 12, 2008 10:55 AM, M. Edward (Ed) Borasky wrote: > > > This may seem like a silly question, but how do C programmers (assume > > gcc/linux for now) do behavior-driven/test-driven development? Aside > > from the obvious cheat (using RSpec to compile, link and execute the C > > code) are there tools in C to do this? > > > > > I use boost::test since boost is a standard linux install package. boost > has a bunch of great things to complement stl. I second this - I have used CxxTest in my Symbian days, then used it a bit on windows, and now we are using boost::test. So far it's good, but the test I have are quite small.