我正在從junit4過渡到junit5項目,並試圖找出如何測試日誌。以前,我用如何測試junit5中的日誌?
@Rule
OutputCapture outputCapture = new OutputCapture();
,然後將寫使用outputCapture.toString()
斷言,例如
assertThat(outputCapture.toString(),containsString("status=200"));
由於@Rule
註釋但在junit5一直沒有執行,我不能使用outputCapture。任何想法,而不是做什麼?謝謝!