123456789101112131415161718192021222324252627282930 |
- #pragma once
- #include "gtest/gtest.h"
- class TestFixture : public testing::Test {
- public:
- TestFixture();
- ~TestFixture();
- static void SetUpTestCase();
- static void TearDownTestCase();
- void run_one_scan_loop();
- void idle_for(unsigned ms);
- };
|