When running Scalatest and JUnit tests in SBT I receive a short summary at the end:
Passed: Total 1359, Failed 0, Errors 0, Passed 1358, Skipped 1, Ignored 13, Pending 1
I understand the meaning of the Total count, passed and ignored tests. But what is the meaning of:
- Skipped?. It looks like
Ignored
but there must be some difference. - Pending?. Aren't all the tests processed when the summary is given?
- Difference between
Failed
andErrors
?