Skip to content

Commit

Permalink
chore: add NotImplementedError in empty test case
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyLightQP committed Feb 6, 2025
1 parent 8a6edd2 commit 4f3f3b5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/test/kotlin/me/daegyeo/maru/DiaryUnitTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ class DiaryUnitTest {

@Test
fun `일기를 성공적으로 가져옴`() {
throw NotImplementedError()
}

@Test
fun `본인 일기가 아니라면 가져올 때 오류를 반환함`() {
throw NotImplementedError()
}

@Test
Expand Down Expand Up @@ -105,17 +107,21 @@ class DiaryUnitTest {

@Test
fun `일기를 성공적으로 수정함`() {
throw NotImplementedError()
}

@Test
fun `본인 일기가 아니라면 수정 시 오류를 반환함`() {
throw NotImplementedError()
}

@Test
fun `일기를 성공적으로 삭제함`() {
throw NotImplementedError()
}

@Test
fun `본인 일기가 아니라면 삭제 시 오류를 반환함`() {
throw NotImplementedError()
}
}

0 comments on commit 4f3f3b5

Please sign in to comment.