1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef TESTING_PLATFORM_TEST_H_
- #define TESTING_PLATFORM_TEST_H_
- #include <gtest/gtest.h>
- #if defined(GTEST_OS_MAC)
- #include <objc/objc.h>
- class PlatformTest : public testing::Test {
- public:
- ~PlatformTest() override;
- protected:
- PlatformTest();
- private:
-
-
-
- id pool_;
- };
- #else
- typedef testing::Test PlatformTest;
- #endif
- #endif
|