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
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
H2 관련 설정
SET REFERENTIAL_INTEGRITY FALSE
FK 무결성
무시 설정ALTER TABLE " + tableName + " ALTER COLUMN id RESTART WITH 1
tableName
의id
라는 컬럼의 값을 1로 초기화@GeneratedValue(strategy = GenerationType.IDENTITY)
일 때만 가능CTRL + F
로 찾아서 확인 가능TestListener 관련 설정
beforeTestClass
: 테스트 클래스 내의 어떠한 테스트도 실행되기 전에 테스트 클래스를 전처리하기 위해 사용prepareTestInstance
: 테스트 객체를 생성하기 위한 전처리 작업을 위해 사용beforeTestMethod
:BeforeEach
와 같은Before Callback
들이 실행되기 전에 테스트를 전처리 할 때 사용beforeTestExecution
:BeforeEach
와 같은Before Callback
들이 실행된 후에 테스트를 전처리 할 때 사용afterTestExecution
:AfterEach
와 같은After Callback
들이 실행되기 전에 테스트를 후처리 할 때 사용afterTestMethod
:AfterEach
와 같은After Callback
들이 실행된 후에 테스트를 후처리 할 때 사용afterTestClass
: 모든 테스트의 실행이 끝나고, 테스트 클래스를 후처리할 때 사용Beta Was this translation helpful? Give feedback.
All reactions