src/main/java/org/apache/sling/junit/impl/servlet/HtmlRenderer.java [202:212]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void testSuiteStarted(Description description) throws Exception {
        super.testSuiteStarted(description);
        if (description.getTestClass() != null) {
            title(3, description.getClassName());
        }
    }

    @Override
    public void testStarted(Description description) throws Exception {
        super.testStarted(description);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/junit/impl/servlet/XmlRenderer.java [253:263]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	@Override
	public void testSuiteStarted(Description description) throws Exception {
		super.testSuiteStarted(description);
		if (description.getTestClass() != null) {
			title(3, description.getClassName());
		}
	}

	@Override
	public void testStarted(Description description) throws Exception {
		super.testStarted(description);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



