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
@Nested
@DisplayName("Order 단위 테스트")
class OrderTest {
@Test
@DisplayName("오더를 생성한다")
public void createOrder() {
// when & then
}
@Test
@DisplayName("아이디가 없으면 오더를 생성할 때 예외가 발생한다")
public void throwException_nullId() {
// given
// when
// then
}
}
🔨개발 할 기능
CI 활용성 및 테스트 커버리지 측정을 위한 테스트 코드 작성
🧩 세부 기능
📖 참고 사항
한 번에 모든 API에 대한 테스트 코드를 올리지 말고 적당히 도메인 별로 나눠서 작업 후 pr
pr이 쌓이면서 변하는 테스트 커버리지를 보기 위함!
The text was updated successfully, but these errors were encountered: