From: Tim Pease Date: 2008-02-13T02:28:17+09:00 Subject: Re: How do C programmers do unit testing? On Feb 12, 2008, at 9: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? > CUnit and CppUnit are the two biggies I remember from the old days. Just a re-implementation of Kent Beck's unit testing pattern in C and C ++ respectively. JUnit was the one that first made unit testing fun and popular. Everyone else has pretty much cloned what was done there. RSpec has been a breath of fresh air. Thanks, Ed :) Blessings, TwP