Files
whetstone_DSL/editor/tests/step174_integration_test.cpp

18 lines
419 B
C++
Raw Normal View History

2026-02-09 21:51:44 -07:00
// Step 174: Icon system integration checks.
#include <cassert>
#include "IconSet.h"
int main() {
ImGui::CreateContext();
ImU32 color = IconSet::fileColor(FileIconType::Python);
ImU32 warn = IconSet::diagnosticColor(DiagnosticIconType::Warning);
assert(color != 0);
assert(warn != 0);
ImGui::DestroyContext();
printf("step174_integration_test: all assertions passed\n");
return 0;
}