()
| 239 | |
| 240 | #[test] |
| 241 | fn test_app_context_creation() { |
| 242 | let app_context = AppContext::builder().build(); |
| 243 | |
| 244 | // Verify we can access all expected fields |
| 245 | let _env = app_context.tsk_env(); |
| 246 | let _config = app_context.tsk_config(); |
| 247 | let _git_sync = app_context.git_sync_manager(); |
| 248 | let _notification = app_context.notification_client(); |
| 249 | let _terminal = app_context.terminal_operations(); |
| 250 | let _storage = app_context.task_storage(); |
| 251 | |
| 252 | // Tests default to non-interactive |
| 253 | assert!(!app_context.interactive()); |
| 254 | } |
| 255 | } |
nothing calls this directly
no test coverage detected