I use org.junit.platform.console.ConsoleLauncher as an eclipse run config.
Output:
Test plan execution started. Number of static tests: [34m2
[0m[36mโท
[0mโโ[36m JUnit Vintage[0m
โโ[36m JUnit Vintage[0m finished after 3 ms.
โโ[36m JUnit Jupiter[0m
โ โโ[36m MyExampleJUnit5UnitTest[0m
โ โ โโ[34m abc()
[0mโ โ โ tags: []
โ โ โ uniqueId: [engine:junit-jupiter]/[class:testing.junit.MyExampleJUnit5UnitTest]/[method:abc()]
โ โ โ parent: [engine:junit-jupiter]/[class:testing.junit.MyExampleJUnit5UnitTest]
โ โ โ source: MethodSource [className = 'testing.junit.MyExampleJUnit5UnitTest', methodName = 'abc', methodParameterTypes = '']
test1
โ โ โ duration: 13 ms
โ โ โ status: [32mโ SUCCESSFUL
[0mโ โ โโ[34m cba()
[0mโ โ โ tags: []
โ โ โ uniqueId: [engine:junit-jupiter]/[class:testing.junit.MyExampleJUnit5UnitTest]/[method:cba()]
โ โ โ parent: [engine:junit-jupiter]/[class:testing.junit.MyExampleJUnit5UnitTest]
โ โ โ source: MethodSource [className = 'testing.junit.MyExampleJUnit5UnitTest', methodName = 'cba', methodParameterTypes = '']
test2
โ โ โ duration: 2 ms
โ โ โ status: [32mโ SUCCESSFUL
[0mโ โโ[36m MyExampleJUnit5UnitTest[0m finished after 27 ms.
โโ[36m JUnit Jupiter[0m finished after 42 ms.
Test plan execution finished. Number of all tests: [34m2
[0m
Test run finished after 69 ms
[ 3 containers found ]
[ 0 containers skipped ]
[ 3 containers started ]
[ 0 containers aborted ]
[ 3 containers successful ]
[ 0 containers failed ]
[ 2 tests found ]
[ 0 tests skipped ]
[ 2 tests started ]
[ 0 tests aborted ]
[ 2 tests successful ]
[ 0 tests failed ]
What's that? ->
???
I would assume you've probably run the tests in a console that doesn't have support for ANSI escape codes. If you were in a console that supported them you'd see output that looked more like the following.

๏ฟฝ[32mโ SUCCESSFUL

Thanks for getting in touch, but it feels like this is a question that would be better suited to Stack Overflow. We prefer to use the issue tracker only for bugs and enhancements. Feel free to update this issue with a link to the re-posted question (so that other people can find it) or add some more details if you feel this is a genuine bug.
You can disable ansi colors using --disable-ansi-colors.
Thanks, but that does not work when i remember right. But i will try it again ASAP.
I was wrong. Now it works with --disable-ansi-colors ... thx!! :-)