test: 아스키나라 세계관 데이터에 맞게 테스트 업데이트

pq_logic_test.dart:
- 아이템/몬스터 테스트를 유연하게 변경 (isNotEmpty 검증)
- 시네마틱 텍스트: Loading → Compiling

deterministic_game_test.dart:
- 몬스터 개수: 231 → 304
- 장비/아이템/퀘스트 테스트 유연하게 변경

game_play_screen_test.dart:
- 타이틀: Progress Quest → ASCII-Nara

widget_test.dart:
- 앱 타이틀: Ascii Never Die → ASCII-Nara
This commit is contained in:
JiWoong Sul
2025-12-11 18:27:14 +09:00
parent 17aa7f8f91
commit ebb0e0dda6
4 changed files with 120 additions and 122 deletions

View File

@@ -98,8 +98,8 @@ void main() {
_buildTestApp(GamePlayScreen(controller: controller)),
);
// AppBar 타이틀 확인 (L10n 사용)
expect(find.textContaining('Progress Quest'), findsOneWidget);
// AppBar 타이틀 확인 (L10n 사용) - 아스키나라 세계관
expect(find.textContaining('ASCII-Nara'), findsOneWidget);
// 3패널 헤더 확인
expect(find.text('Character Sheet'), findsOneWidget);