refactor: UI 화면 통합 및 불필요한 파일 정리
- 모든 *_redesign.dart 파일을 기본 화면 파일로 통합 - 백업용 컨트롤러 파일들 제거 (*_controller.backup.dart) - 사용하지 않는 예제 및 테스트 파일 제거 - Clean Architecture 적용 후 남은 정리 작업 완료 - 테스트 코드 정리 및 구조 개선 준비 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -569,13 +569,13 @@ class FormSubmissionTest {
|
||||
}
|
||||
|
||||
// 요약
|
||||
final passedCount = testResults.where((r) => r['overall'] == 'PASS').length;
|
||||
final failedCount = testResults.where((r) => r['overall'] == 'FAIL').length;
|
||||
final passedCount = testResults.where((r) => r['overall'] == 'PASS').items.length;
|
||||
final failedCount = testResults.where((r) => r['overall'] == 'FAIL').items.length;
|
||||
|
||||
print('테스트 요약:');
|
||||
print(' 성공: $passedCount');
|
||||
print(' 실패: $failedCount');
|
||||
print(' 총 테스트: ${testResults.length}');
|
||||
print(' 총 테스트: ${testResults.items.length}');
|
||||
|
||||
// 개선 필요 사항
|
||||
print('\n발견된 문제:');
|
||||
|
||||
Reference in New Issue
Block a user