#include #include"MyBiDiCounter.hpp" void testMyBiDiCounter() { MyBiDiCounter counterA(0, 4); counterA.print(); for (int i = 0; i < 6; i++) { counterA.increment(); counterA.print(); } for (int i = 0; i < 6; i++) { counterA.decrement(); counterA.print(); } } int main() { testMyBiDiCounter(); return 0; }