[#34] 회원 / 인증 도메인 재정의 #43

Merged
pricelees merged 73 commits from refactor/#34 into main 2025-09-13 10:13:45 +00:00
Showing only changes of commit dd4e022d6d - Show all commits

View File

@ -72,7 +72,7 @@ object UserFixture {
email: String = "sample@example.com", email: String = "sample@example.com",
password: String = "a".repeat(MIN_PASSWORD_LENGTH), password: String = "a".repeat(MIN_PASSWORD_LENGTH),
phone: String = "01012345678", phone: String = "01012345678",
regionCode: String? = null, regionCode: String = "1111010100",
status: UserStatus = UserStatus.ACTIVE status: UserStatus = UserStatus.ACTIVE
): UserEntity = UserEntity( ): UserEntity = UserEntity(
id = id, id = id,
@ -89,7 +89,7 @@ object UserFixture {
email = "sample@example.com", email = "sample@example.com",
password = "a".repeat(MIN_PASSWORD_LENGTH), password = "a".repeat(MIN_PASSWORD_LENGTH),
phone = "01012345678", phone = "01012345678",
regionCode = null regionCode = "1111010100"
) )
} }