//Implement and test CountDown #include #include #include "count.h" //This is a first unit test for the CountDown class. Remove before Beta Tests. int main() { for( CountDown i = 5 ; ! i.end(); i.next()) std::cerr << "test\n"; //should output 5 lines saying "test" } // Define the necessary functions below here