1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
| #include <iostream>
#include <cassert>
#include <thread>
#include <chrono>
#include "timer.h"
void test_class_timer_1();
void test_class_timer_2();
void test_class_timer_3();
void test_class_timer_4();
void callbackTimer(void);
bool bCallbackTimer;
int main()
{
std::cout << std::endl << "Test timer" << std::endl << std::endl;
std::cout << "----- test_class_timer_1 -----" << std::endl;
test_class_timer_1();
std::cout << "------------------------------" << std::endl;
std::cout << "----- test_class_timer_2 -----" << std::endl;
test_class_timer_2();
std::cout << "------------------------------" << std::endl;
std::cout << "----- test_class_timer_3 -----" << std::endl;
test_class_timer_3();
std::cout << "------------------------------" << std::endl;
std::cout << "----- test_class_timer_4 -----" << std::endl;
test_class_timer_4();
std::cout << "------------------------------" << std::endl;
std::cout << std::endl << "End test timer" << std::endl << std::endl;
return EXIT_SUCCESS;
}
void test_class_timer_1()
{
Timer oTimer;
bCallbackTimer = false;
oTimer.start(500, &callbackTimer);
assert(oTimer.isRunning() == true);
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
assert(bCallbackTimer == true);
}
void test_class_timer_2()
{
Timer oTimer;
bCallbackTimer = false;
oTimer.start(3000, &callbackTimer);
assert(oTimer.isRunning() == true);
std::this_thread::sleep_for(std::chrono::milliseconds(500));
assert(bCallbackTimer == false);
oTimer.stop();
assert(oTimer.isRunning() == false);
assert(bCallbackTimer == false);
std::this_thread::sleep_for(std::chrono::milliseconds(4000));
}
void test_class_timer_3()
{
Timer oTimer;
bCallbackTimer = false;
oTimer.start(2000, &callbackTimer);
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
oTimer.start(2000, &callbackTimer);
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
oTimer.start(2000, &callbackTimer);
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
assert(oTimer.isRunning() == true);
assert(bCallbackTimer == false);
std::this_thread::sleep_for(std::chrono::milliseconds(1500));
assert(bCallbackTimer == true);
}
void test_class_timer_4()
{
Timer oTimer;
bCallbackTimer = false;
oTimer.start(2000, &callbackTimer);
oTimer.start(2000, &callbackTimer);
oTimer.start(2000, &callbackTimer);
oTimer.start(2000, &callbackTimer);
assert(bCallbackTimer == false);
std::this_thread::sleep_for(std::chrono::milliseconds(3000));
assert(bCallbackTimer == true);
}
void callbackTimer(void)
{
std::cout << "callbackTimer" << std::endl;
bCallbackTimer = true;
} |