Files
whetstone_DSL/editor/tests/step181_integration_test.cpp

17 lines
412 B
C++
Raw Normal View History

2026-02-09 22:40:26 -07:00
// 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;
}