refactor : 부적합한 테스트 삭제

This commit is contained in:
banjjoknim
2022-04-26 21:00:15 +09:00
parent a68e3795e0
commit ca95300a55

View File

@@ -1,24 +0,0 @@
package com.banjjoknim.cleanarchitecture.user.pojo
import org.junit.jupiter.api.DisplayName
import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.assertDoesNotThrow
import org.junit.jupiter.api.assertThrows
class NicknameTest {
@DisplayName("닉네임 생성 테스트")
@Nested
inner class ChangeNicknameTestCases {
@Test
fun `10글자 이내이면 닉네임을 생성할 수 있다`() {
assertDoesNotThrow { Nickname("banjjoknim") }
}
@Test
fun `10글자가 넘으면 닉네임을 생성할 경우 예외가 발생한다`() {
assertThrows<IllegalArgumentException> { Nickname("i'm banjjoknim") }
}
}
}