You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(tutorial): 13/14 사용자 정의 nested class 이름을 신규 표준 "Domain"으로 통일 (영/한)
framework가 architecture test로 검증하는 사용자 정의 nested class 표준 이름이
v1.0.0-alpha.4에서 "DomainErrors" → "Domain"으로 변경됨
(IValueObject.ArchTestContract.NestedErrorsClassName = "Domain"). 13/14
튜토리얼의 학습 흐름은 보존하되(13: 사용자 정의 nested class 도입 → 14:
framework helper로 단순화) 모든 클래스/변수 이름을 신규 표준에 맞춤.
대상 (13/14 영/한, .md + self-contained framework .cs):
- internal static class DomainErrors → internal static class Domain
- DomainErrors.X(args) 호출 → Domain.X(args)
- nameof(DomainErrors) → nameof(Domain)
- 변수 이름 DomainErrorsNestedClassName → NestedErrorsClassName
(실제 framework IValueObject.ArchTestContract와 동일)
- 변수 이름 DomainErrorsPrefix → DomainPrefix
- 산문 "DomainErrors 클래스" → "Domain 클래스"
- 한글 조사 앞 DomainErrors가/를/의/로/는/와 정정
Framework testing helper 메서드 이름(ShouldHaveDomainErrors,
ShouldBeDomainError 등)은 Functorium.Testing 라이브러리의 실제 메서드
이름이라 그대로 유지.
검증: FunctionalValueObject.slnx 빌드 0 오류, 1080/1080 테스트 통과.
잔존 grep 0건 (testing helper 메서드 이름 외).
Copy file name to clipboardExpand all lines: Docs.Site/src/content/docs/ko/tutorials/functional-valueobject/part1-valueobject-concepts/13-error-code/ErrorCode.Tests.Unit/DenominatorTests.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ public void Create_ShouldReturnFailureResult_WhenValueIsZero()
Copy file name to clipboardExpand all lines: Docs.Site/src/content/docs/ko/tutorials/functional-valueobject/part1-valueobject-concepts/13-error-code/ErrorCode.Tests.Unit/ErrorFactoryTests.cs
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,10 @@ public class ErrorFactoryTests
Copy file name to clipboardExpand all lines: Docs.Site/src/content/docs/ko/tutorials/functional-valueobject/part1-valueobject-concepts/13-error-code/ErrorCode/ValueObjects/01-ComparableNot/01-PrimitiveValueObjects/BinaryData.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -50,10 +50,10 @@ public static BinaryData CreateFromValidated(byte[] validatedValue) =>
Copy file name to clipboardExpand all lines: Docs.Site/src/content/docs/ko/tutorials/functional-valueobject/part1-valueobject-concepts/13-error-code/ErrorCode/ValueObjects/01-ComparableNot/02-CompositePrimitiveValueObjects/Coordinate.cs
Copy file name to clipboardExpand all lines: Docs.Site/src/content/docs/ko/tutorials/functional-valueobject/part1-valueobject-concepts/13-error-code/ErrorCode/ValueObjects/01-ComparableNot/03-CompositeValueObjects/City.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -50,10 +50,10 @@ public static City CreateFromValidated(string validatedValue) =>
Copy file name to clipboardExpand all lines: Docs.Site/src/content/docs/ko/tutorials/functional-valueobject/part1-valueobject-concepts/13-error-code/ErrorCode/ValueObjects/01-ComparableNot/03-CompositeValueObjects/PostalCode.cs
Copy file name to clipboardExpand all lines: Docs.Site/src/content/docs/ko/tutorials/functional-valueobject/part1-valueobject-concepts/13-error-code/ErrorCode/ValueObjects/01-ComparableNot/03-CompositeValueObjects/Street.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -50,10 +50,10 @@ public static Street CreateFromValidated(string validatedValue) =>
Copy file name to clipboardExpand all lines: Docs.Site/src/content/docs/ko/tutorials/functional-valueobject/part1-valueobject-concepts/13-error-code/ErrorCode/ValueObjects/02-Comparable/01-PrimitiveValueObjects/Denominator.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -50,10 +50,10 @@ public static Denominator CreateFromValidated(int validatedValue) =>
Copy file name to clipboardExpand all lines: Docs.Site/src/content/docs/ko/tutorials/functional-valueobject/part1-valueobject-concepts/13-error-code/ErrorCode/ValueObjects/02-Comparable/02-CompositePrimitiveValueObjects/DateRange.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ from validRange in ValidateDateRange(validStartDate, validEndDate)
Copy file name to clipboardExpand all lines: Docs.Site/src/content/docs/ko/tutorials/functional-valueobject/part1-valueobject-concepts/13-error-code/ErrorCode/ValueObjects/02-Comparable/03-CompositeValueObjects/Currency.cs
0 commit comments