* @brief OnEnable lifecycle callback that prevents enabling * * Returns false to prevent task enabling. Used for testing * conditional enabling behavior. */
| 282 | * conditional enabling behavior. |
| 283 | */ |
| 284 | bool test_onEnable_false() { |
| 285 | onEnable_called = true; |
| 286 | test_output.push_back("onEnable_called_false"); |
| 287 | return false; |
| 288 | } |
| 289 | |
| 290 | /** |
| 291 | * @brief OnDisable lifecycle callback |
nothing calls this directly
no outgoing calls
no test coverage detected