testing_clock.h 988 B

1234567891011121314151617181920212223242526272829
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #ifndef TESTING_CLOCK_H_
  5. #define TESTING_CLOCK_H_
  6. #include "ua_types.h"
  7. /**
  8. * Simulate the system clock
  9. * ------------------------- */
  10. /* The testing clock is used for reproducible unit tests that require precise
  11. * timings. It implements the following functions from ua_types.h. They return a
  12. * deterministic time that can be advanced manually with UA_sleep.
  13. *
  14. * UA_DateTime UA_EXPORT UA_DateTime_now(void);
  15. * UA_DateTime UA_EXPORT UA_DateTime_nowMonotonic(void); */
  16. /* Forwards the testing clock by the given duration in ms */
  17. void UA_fakeSleep(UA_UInt32 duration);
  18. /* Sleep for the duration in milliseconds. Used to wait for workers to complete.
  19. * Does not do anything in single-threaded mode. */
  20. void UA_realSleep(UA_UInt32 duration);
  21. #endif /* TESTING_CLOCK_H_ */