TDD 작성

This commit is contained in:
2025-08-12 03:28:08 +09:00
parent 6033d59590
commit 107abc963f
156 changed files with 70906 additions and 642 deletions
+8
View File
@@ -0,0 +1,8 @@
// 테스트 환경에서 사용할 설정 파일
// 테스트 환경에서 특정 파일을 격리하기 위한 설정
// 테스트 환경 여부 확인
const bool isTestEnvironment = true;
// 테스트 환경에서 사용할 모의 객체 클래스 이름
const String mockEventDetailsScreenClass = 'EventDetailsScreenMock';