/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemrules/SystemErrPrintlnWithRuleUnitTest.java
25 строк
657 B
Jonathan Cook
BAEL-4437 - System Rules (#10047)
18 сен 2020, 00:22
18 сен 2020, 00:22
f6adcd0
Код
Авторство
О чём код?
package com.baeldung.systemrules; import org.junit.Assert; import org.junit.Rule; import org.junit.Test; import org.junit.contrib.java.lang.system.SystemErrRule; public class SystemErrPrintlnWithRuleUnitTest { @Rule public final SystemErrRule systemErrRule = new SystemErrRule().enableLog(); @Test public void givenSystemErrRule_whenInvokePrintln_thenLogSuccess() { printError("An Error occurred Baeldung Readers!!"); Assert.assertEquals("An Error occurred Baeldung Readers!!", systemErrRule.getLog() .trim()); } private void printError(String output) { System.err.println(output); } }