Step 181: enhanced status bar

This commit is contained in:
Bill
2026-02-09 22:40:26 -07:00
parent a1d8f00f2c
commit e05f83812c
7 changed files with 181 additions and 56 deletions

View File

@@ -0,0 +1,16 @@
// Step 181: Status bar helper integration checks.
#include <cassert>
#include "NotificationSystem.h"
int main() {
NotificationSystem system;
system.notifyAt(NotificationLevel::Info, "Hello", 1.0);
const Notification* latest = system.latest();
assert(latest != nullptr);
assert(latest->message == "Hello");
printf("step181_integration_test: all assertions passed\n");
return 0;
}