03/06/06 CISC181 2.30pm lecture Today's Topic: Test Driven Development or TDD TDD is a "big buzzword" these days in Software Development *** Addendum on 03.15.06 Previously, in CISC181... We worked all the way through the TDD process on testComputeSplitTime, culminating in a version of computeSplitTime.cc in a separate file, that works in combination with testComputeSplitTime5.cc So we combined computeSplitTime.cc and testComputeSplitTime5.cc by using separate compilation, as follows: CC -c computeSplitTime.cc CC -c testComputeSplitTime5.cc CC computeSplitTime.o testComputeSplitTime5.o -o foo ./foo then produces Passed Passed Passed Passed Next Steps: Go back to what we were working on originally, but organize it using a Makefile. We'll do that in the directory workoutProject1