| 89 | } |
| 90 | }; |
| 91 | TEST_F( BaseProcessTest, constructTest ) { |
| 92 | bool ok = true; |
| 93 | try { |
| 94 | TestingBaseProcess process; |
| 95 | } catch (...) { |
| 96 | ok = false; |
| 97 | } |
| 98 | EXPECT_TRUE(ok); |
| 99 | } |
| 100 | |
| 101 | TEST_F( BaseProcessTest, executeOnSceneTest ) { |
| 102 | TestingBaseProcess process; |
nothing calls this directly
no test coverage detected