Re: Surefire Plugin: Tests failure on abstract class only shows the abstract class name

2023-11-05 Thread Benjamin Marwell
Hi Tison, do you have access to the issue tracker? https://issues.apache.org/jira/projects/SUREFIRE/issues Am Mo., 16. Okt. 2023 um 07:51 Uhr schrieb tison : > > Bubble up. Or where I can file an issue to track if it's likely an > improvement. > > Best, > tison. > > > tison 于2023年9月23日周六 09:48写道

Re: Surefire Plugin: Tests failure on abstract class only shows the abstract class name

2023-10-15 Thread tison
Bubble up. Or where I can file an issue to track if it's likely an improvement. Best, tison. tison 于2023年9月23日周六 09:48写道: > The "usePhrasedClassNameInRunning" property in > "JUnit5StatelessTestsetInfoReporter" helps a bit: > > @DisplayName("FsTest") > public class FsTest extends BehaviorTest {

Re: Surefire Plugin: Tests failure on abstract class only shows the abstract class name

2023-09-22 Thread tison
The "usePhrasedClassNameInRunning" property in "JUnit5StatelessTestsetInfoReporter" helps a bit: @DisplayName("FsTest") public class FsTest extends BehaviorTest { // ... } [INFO] Running FsTest AsyncWriteTest [ERROR] Tests run: 4, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.636 s <<<

Re: Surefire Plugin: Tests failure on abstract class only shows the abstract class name

2023-09-22 Thread tison
To demostrate the expected manner, I want: [ERROR] Tests run: 4, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.535 s <<< FAILURE! - in org.apache.opendal.behavior.BehaviorTest$AsyncWriteTest [ERROR] org.apache.opendal.behavior.BehaviorTest$AsyncWriteTest.testReadFull Time elapsed: 0.491 s

Surefire Plugin: Tests failure on abstract class only shows the abstract class name

2023-09-22 Thread tison
See https://github.com/junit-team/junit5/issues/3475 for details. Perhaps JUnit5ConsoleOutputReporter is related but I failed to located the certain line constructing the test method name. Best, tison.