* @brief OnEnable lifecycle callback that allows enabling * * Returns true to allow task enabling. Used for testing * normal lifecycle callback behavior. */
| 270 | * normal lifecycle callback behavior. |
| 271 | */ |
| 272 | bool test_onEnable() { |
| 273 | onEnable_called = true; |
| 274 | test_output.push_back("onEnable_called"); |
| 275 | return true; |
| 276 | } |
| 277 | |
| 278 | /** |
| 279 | * @brief OnEnable lifecycle callback that prevents enabling |
nothing calls this directly
no outgoing calls
no test coverage detected