- Add Catch2 test framework with MockIO and TimeSimulator utilities - Implement 10 TI for SchedulerModule (task lifecycle, hyperfocus, breaks) - Implement 10 TI for NotificationModule (queue, priority, silent mode) - Fix SchedulerModule: update m_lastActivityTime in process() - Add AISSIA_TEST_BUILD guards to avoid symbol conflicts - All 20 tests passing (69 assertions total) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
275 B
C++
9 lines
275 B
C++
// AISSIA Integration Tests - Entry Point
|
|
// Using Catch2 v3 with main provided by Catch2::Catch2WithMain
|
|
|
|
// This file is intentionally minimal.
|
|
// Catch2WithMain provides the main() function automatically.
|
|
|
|
// Include common test utilities
|
|
#include "utils/TestHelpers.hpp"
|