| 22 | namespace { |
| 23 | |
| 24 | TEST(PartialRunMgrFindOrCreate, Create) { |
| 25 | // Basic test of PartialRunMgr CancellationManager creation. |
| 26 | PartialRunMgr partial_run_mgr; |
| 27 | int step_id = 1; |
| 28 | CancellationManager* cancellation_manager; |
| 29 | partial_run_mgr.FindOrCreate(step_id, &cancellation_manager); |
| 30 | EXPECT_TRUE(cancellation_manager != nullptr); |
| 31 | } |
| 32 | |
| 33 | TEST(PartialRunMgrFindOrCreate, Find) { |
| 34 | // Basic test of PartialRunMgr CancellationManager find. |
nothing calls this directly
no test coverage detected