Я пытаюсь сделать мои gradle test
журналы максимально краткими и полезными.
Пока у меня есть это:
> Task :test FAILED
CylinderVolumeCalculatorTest > should return a volume of PI when cylinder radius is 1 and height is 1() FAILED
org.opentest4j.AssertionFailedError:
Expecting:
3.141592653589793
to be equal to:
6
but was not.
1 test completed, 1 failed
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':test'.
> There were failing tests. See the report at: file:///Users/egi/Projets/Sandboxes/Kotlin/testConfig/tryConfig/build/reports/tests/test/index.html
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 2s
4 actionable tasks: 1 executed, 3 up-to-date
Я бы хотел получить все, что ниже линии 1 test completed, 1 failed
, то есть шум, который мне не нужен при выполнении TDD. У кого-нибудь есть идеи, как это сделать?
Большое спасибо заранее!