개요

테스트 메서드 이름 표시

@DisplayNameGeneration(DisplayNameGenerator.ReplaceUnderscores.class)
class StudyTest {

		@Test
		@DisplayName("스터디 만들기 첫 번째")
		void create() throws Exception {
			//given
			Study study = new Study();
	
			//when
	
			//then
			assertNotNull(study);
			System.out.println("create");
		}
	
		@Test
		@DisplayName("스터디 만들기 두 번째")
		void createTwo() throws Exception {
			//given
			Study study = new Study();
	
			//when
	
			//then
			assertNotNull(study);
			System.out.println("create Two");
		}
}