Skip to content

Commit 7927f85

Browse files
committed
[#52] 테스트 메서드 이름 변경
1 parent 8ccc29f commit 7927f85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Mark-In-Tests/ValidationsTests/DTOFieldKeyMappingTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ import Testing
1111
struct DTOFieldKeyMappingTests {
1212

1313
@Test
14-
func testCodingKeys_shouldMatchFirestoreFieldKeys_inFolderDTO() async throws {
14+
func test_FolderDTO의_CodingKey와_FirestoreFieldKey가_일치해야_한다() async throws {
1515
#expect(FolderDTO.CodingKeys.id.rawValue == FirestoreFieldKey.Folder.id)
1616
#expect(FolderDTO.CodingKeys.name.rawValue == FirestoreFieldKey.Folder.name)
1717
#expect(FolderDTO.CodingKeys.createdAt.rawValue == FirestoreFieldKey.Folder.createdAt)
1818
}
1919

2020
@Test
21-
func testCodingKeys_shouldMatchFirestoreFieldKeys_inWebLinkDTO() async throws {
21+
func test_WebLinkDTO의_CodingKey와_FirestoreFieldKey가_일치해야_한다() async throws {
2222
#expect(WebLinkDTO.CodingKeys.id.rawValue == FirestoreFieldKey.Link.id)
2323
#expect(WebLinkDTO.CodingKeys.url.rawValue == FirestoreFieldKey.Link.url)
2424
#expect(WebLinkDTO.CodingKeys.title.rawValue == FirestoreFieldKey.Link.title)

0 commit comments

Comments
 (0)