- 모든 서비스 메서드 시그니처를 실제 구현에 맞게 수정 - TestDataGenerator 제거하고 직접 객체 생성으로 변경 - 모델 필드명 및 타입 불일치 수정 - 불필요한 Either 패턴 사용 제거 - null safety 관련 이슈 해결 수정된 파일: - test/integration/screens/company_integration_test.dart - test/integration/screens/equipment_integration_test.dart - test/integration/screens/user_integration_test.dart - test/integration/screens/login_integration_test.dart
22 lines
658 B
Bash
Executable File
22 lines
658 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "====================================="
|
|
echo "장비 입고 테스트 데모 실행"
|
|
echo "====================================="
|
|
echo ""
|
|
echo "이 데모는 다음을 보여줍니다:"
|
|
echo "1. 정상적인 장비 입고 프로세스"
|
|
echo "2. 에러 자동 진단 및 수정 기능"
|
|
echo "3. API 연결 실패 시 자동 재시도"
|
|
echo "4. 자동 수정 통계 및 학습"
|
|
echo ""
|
|
echo "테스트 시작..."
|
|
echo ""
|
|
|
|
# 테스트 실행
|
|
flutter test test/integration/equipment_in_demo_test.dart --reporter expanded
|
|
|
|
echo ""
|
|
echo "====================================="
|
|
echo "테스트 완료!"
|
|
echo "=====================================" |