- Applied clang-format to fix formatting violations in TUI and other source files - Updated CMakeLists.txt to exclude src/lib/* from format targets to prevent third-party library violations - Fixes clang-format violations in chat_tui.cc, tui.cc, and unified_layout.cc - All source files now pass format-check target 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
517 B
C
18 lines
517 B
C
#ifndef YAZE_TEST_E2E_DUNGEON_EDITOR_SMOKE_TEST_H
|
|
#define YAZE_TEST_E2E_DUNGEON_EDITOR_SMOKE_TEST_H
|
|
|
|
#include "imgui_test_engine/imgui_te_context.h"
|
|
|
|
/**
|
|
* @brief Quick smoke test for DungeonEditorV2 card-based UI
|
|
*
|
|
* Tests basic functionality:
|
|
* - Opening dungeon editor
|
|
* - Opening independent cards (Rooms, Matrix, Objects, etc.)
|
|
* - Opening room cards
|
|
* - Basic interaction with canvas
|
|
*/
|
|
void E2ETest_DungeonEditorV2SmokeTest(ImGuiTestContext* ctx);
|
|
|
|
#endif // YAZE_TEST_E2E_DUNGEON_EDITOR_SMOKE_TEST_H
|