refactor: UI 화면 통합 및 불필요한 파일 정리
Some checks failed
Flutter Test & Quality Check / Build APK (push) Has been cancelled
Flutter Test & Quality Check / Test on macos-latest (push) Has been cancelled
Flutter Test & Quality Check / Test on ubuntu-latest (push) Has been cancelled

- 모든 *_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:
JiWoong Sul
2025-08-11 14:00:44 +09:00
parent 162fe08618
commit 1e6da44917
103 changed files with 1224 additions and 2976 deletions

View File

@@ -404,7 +404,7 @@ class CompanyAutomatedTest extends BaseScreenTest {
final branches = testContext.getData('branches') as List<Branch>?;
// expect(branches, isNotNull, reason: '지점 목록을 조회할 수 없습니다');
// expect(branches!.length, greaterThan(0), reason: '지점 목록이 비어있습니다');
// expect(branches!.items.length, greaterThan(0), reason: '지점 목록이 비어있습니다');
final modifiedBranch = testContext.getData('modifiedBranch');
// expect(modifiedBranch, isNotNull, reason: '지점 수정이 실패했습니다');
@@ -669,12 +669,14 @@ class CompanyAutomatedTest extends BaseScreenTest {
@override
Future<dynamic> performReadOperation(TestData data) async {
return await companyService.getCompanies(
final result = await companyService.getCompanies(
page: data.data['page'] ?? 1,
perPage: data.data['perPage'] ?? 20,
search: data.data['search'],
isActive: data.data['isActive'],
);
// PaginatedResponse의 items를 반환하여 List처럼 사용할 수 있도록 함
return result.items;
}
@override