You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
323 B

  1. #pragma once
  2. #include <gtest/gtest.h>
  3. #include <gmock/gmock.h>
  4. #include <asyncpp/core/misc.h>
  5. struct runtime_thread_lock
  6. { };
  7. struct runtime_mock
  8. {
  9. public:
  10. MOCK_METHOD1(idle, void (const asyncpp::time_point * p_deadline));
  11. MOCK_METHOD0(init_thread, runtime_thread_lock (void));
  12. };