[JUnit5] Assertions 기본 사용법 Jupiter에서 제공하는 Assertions에 대해서 알아보자. 자주 사용하는 Assertions assertEqulas(expected, actual) 실제 값이 기대한 값과 같은지 확인 assertNotNull(actual) actual이 null이 아닌지 assertTrue(boolean) 조건이 참(true)인지 확인 assertAll(executables…) 모든 확인 구문 확인 assertThrows(expectedType, executable) 예외 발생 확인 assertTimeout(duration, executable) 특정 시간 안에 로직이 완료되는지 확인 로직이 완료될 때 까지 기다림 assertTimeoutPreemptively(ex..