History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEA-17986
Type: Bug Bug
Status: Open Open
Assignee: Alexey Kudravtsev
Reporter: Chris Kent
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
IDEA: Feedback

JUnit output window doesn't scroll to follow output

Created: 01 May 08 15:04   Updated: 03 May 08 18:53
Component/s: Unit Testing. JUnit

Environment: Windows XP

Build: 7,757
Severity: Medium


 Description  « Hide
The JUnit output window dosen't scroll to follow the output the way the application output window does.

This doesn't scroll

public class ScrollTest extends TestCase {
public void testScroll() {
for (int i = 0; i < 100; i++) { System.out.println(i); }
}
}

This does

public class TestScroll {
public static void main(final String[] args) {
for (int i = 0; i < 100; i++) { System.out.println(i); } }
}
}



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.