File tree Expand file tree Collapse file tree
src/test/java/com/prism/statistics/infrastructure/collect/inbox Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,11 +76,11 @@ class CollectInboxTest {
7676 void rehydrate는_상태별_유효한_조합을_허용한다 () {
7777 // when & then
7878 assertAll (
79- () -> assertThatCode (this :: createPendingInbox ).doesNotThrowAnyException (),
80- () -> assertThatCode (this :: createProcessingInbox ).doesNotThrowAnyException (),
81- () -> assertThatCode (this :: createProcessedInbox ).doesNotThrowAnyException (),
82- () -> assertThatCode (this :: createRetryPendingInbox ).doesNotThrowAnyException (),
83- () -> assertThatCode (this :: createFailedInbox ).doesNotThrowAnyException ()
79+ () -> assertThatCode (() -> createPendingInbox () ).doesNotThrowAnyException (),
80+ () -> assertThatCode (() -> createProcessingInbox () ).doesNotThrowAnyException (),
81+ () -> assertThatCode (() -> createProcessedInbox () ).doesNotThrowAnyException (),
82+ () -> assertThatCode (() -> createRetryPendingInbox () ).doesNotThrowAnyException (),
83+ () -> assertThatCode (() -> createFailedInbox () ).doesNotThrowAnyException ()
8484 );
8585 }
8686
You can’t perform that action at this time.
0 commit comments