| 59 | } |
| 60 | |
| 61 | class GTestShell : public UtestShell |
| 62 | { |
| 63 | ::testing::TestInfo* testinfo_; |
| 64 | GTestShell* next_; |
| 65 | GTestFlagsThatAllocateMemory* flags_; |
| 66 | public: |
| 67 | GTestShell(::testing::TestInfo* testinfo, GTestShell* next, GTestFlagsThatAllocateMemory* flags); |
| 68 | |
| 69 | virtual Utest* createTest() _override; |
| 70 | |
| 71 | GTestShell* nextGTest() |
| 72 | { |
| 73 | return next_; |
| 74 | } |
| 75 | }; |
| 76 | |
| 77 | /* Enormous hack! |
| 78 | * |
nothing calls this directly
no outgoing calls
no test coverage detected