-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_features.bat
More file actions
46 lines (38 loc) · 1.26 KB
/
test_features.bat
File metadata and controls
46 lines (38 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# C+ IDE Feature Demonstration Script
# Run this to test all major functionality
echo "=== C+ IDE v1.0 Feature Test ==="
echo.
echo "1. Testing Project Explorer..."
echo " - Sample project created: test_project.cplusproj"
echo " - Sample files: main.cplus, utils.cplus, constants.cplus"
echo.
echo "2. Testing File Association..."
echo " - Double-click any .cplus file in Explorer"
echo " - Right-click → Open With → C+ IDE"
echo " - Command line: \"C+ IDE.exe\" \"file.cplus\""
echo.
echo "3. Testing Project Management..."
echo " - File → New Project"
echo " - File → Open Project"
echo " - Double-click files in Project Explorer"
echo " - Right-click for context menu"
echo.
echo "4. Testing Compilation..."
echo " - Open main.cplus"
echo " - Press F5 to compile and run"
echo " - Check terminal output"
echo.
echo "5. Testing UI Features..."
echo " - Resize Project Explorer panel"
echo " - Navigate between files"
echo " - Use menu shortcuts (Ctrl+N, Ctrl+O, Ctrl+S)"
echo.
echo "6. Testing File Operations..."
echo " - New File (Ctrl+N)"
echo " - Open File (Ctrl+O)"
echo " - Save File (Ctrl+S)"
echo " - Auto-add to project when saving"
echo.
echo "=== Test Complete ==="
echo "All features implemented and ready for use!"
pause