From 0bf0c5dfa0a6bd6fa320dc2a7c0ac07e6e26ff1c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 24 Dec 2025 13:32:36 +0000 Subject: [PATCH] Clarify that quick start guide describes planned implementation Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- DESIGN_BRIEF.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/DESIGN_BRIEF.md b/DESIGN_BRIEF.md index 1a1ba2f..c19ce4e 100644 --- a/DESIGN_BRIEF.md +++ b/DESIGN_BRIEF.md @@ -1339,13 +1339,15 @@ class TestMapGeneration(unittest.TestCase): #### 5. Quick Start: Setting Up Testing +**Note**: This section describes the planned development environment setup. These files and directories will be created during project implementation. + **Development Environment Setup:** ```bash # Clone repository git clone cd BlockWar -# Install Python dependencies +# Install Python dependencies (files to be created) pip install -r requirements.txt pip install -r requirements-test.txt @@ -1356,6 +1358,7 @@ pytest tests/unit/ -v python scripts/generate_all_content.py # Run UE5 automation tests (requires UE5 editor) +# Replace with actual UE5 project name (e.g., BlockWar) UnrealEditor.exe .uproject -ExecCmds="Automation RunTests;Quit" ``` @@ -1363,7 +1366,7 @@ UnrealEditor.exe .uproject -ExecCmds="Automation RunTests;Quit" - Unit tests run on every commit (GitHub Actions) - Integration tests run on pull requests - Full UE5 build tests run on main branch merges -- See `.github/workflows/ci.yml` for complete pipeline +- See `.github/workflows/ci.yml` for complete pipeline (to be implemented) **Test-Driven Development Workflow:** 1. Write Python unit test for generation logic