The tracing information for UI tests (test name printed at start/end of
each test to stdout) is the only remaining functionality of UITestCase.
When the CloseTestWindowsRule has been extracted out of this test case,
the test classes that have been adapted to only use that rule miss that
tracing information since this.
This change moves the tracing to the CloseTestWindowsRule as the central
test rule for UI-related tests. This implicitly readds the tracing
information to tests that use the rule.
With this change, the inheritance to UITestCase can simply be replaced
with the use of the CloseWindowsTestRule in all plain JUnit 4 tests.