File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/test/java/clap/server/notification Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 44import clap .server .adapter .outbound .persistense .entity .notification .constant .NotificationType ;
55import clap .server .application .port .outbound .notification .LoadNotificationPort ;
66import clap .server .application .service .notification .FindNotificationListService ;
7+ import org .junit .jupiter .api .Assertions ;
78import org .junit .jupiter .api .Test ;
89import org .junit .jupiter .api .extension .ExtendWith ;
910import org .mockito .InjectMocks ;
@@ -57,10 +58,10 @@ public void testFindNotificationList() {
5758 Page <FindNotificationListResponse > result = findNotificationListService .findNotificationList (1L , pageable );
5859
5960 //Then
60- assertEquals (3 , result .getContent ().size ());
61+ Assertions . assertEquals (3 , result .getContent ().size ());
6162
62- assertEquals ("VM 생성해주세요" , result .getContent ().get (0 ).taskTitle ());
63- assertEquals ("VM 생성해주세요" , result .getContent ().get (1 ).taskTitle ());
64- assertEquals ("VM 생성해주세요" , result .getContent ().get (2 ).taskTitle ());
63+ Assertions . assertEquals ("VM 생성해주세요" , result .getContent ().get (0 ).taskTitle ());
64+ Assertions . assertEquals ("VM 생성해주세요" , result .getContent ().get (1 ).taskTitle ());
65+ Assertions . assertEquals ("VM 생성해주세요" , result .getContent ().get (2 ).taskTitle ());
6566 }
6667}
You can’t perform that action at this time.
0 commit comments