0

My console output from running JUnit in cmd.exe looks like:

JUnit version 4.10
.....I
Time: 0,469


OK (5 tests)

What does the I on the second line mean?

panny
  • 2,186
  • 4
  • 23
  • 26

1 Answers1

2

It means that the test has been @Ignored.

Matthew Farwell
  • 60,889
  • 18
  • 128
  • 171
  • which test? I ignored a unit test on purpose to see if the number of `I`'s would increase and got `I....I` – panny Feb 07 '13 at 13:17
  • In the example you gave, it's the sixth one. The output from JUnit Core isn't very verbose :-). Seriously, most of the time you'll run your tests through an IDE. – Matthew Farwell Feb 07 '13 at 14:53
  • Why does it say 5 tests, when there are 6 incl. one Ignored? – panny Feb 07 '13 at 17:42