From 4311a62451755c3bb0a2c9c8cb737bda9d09d4c7 Mon Sep 17 00:00:00 2001 From: Matthew Farwell Date: Fri, 25 May 2012 12:45:01 +0200 Subject: [PATCH] Fixes #295 clarify javadoc for Result --- src/main/java/org/junit/runner/Result.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/junit/runner/Result.java b/src/main/java/org/junit/runner/Result.java index edfb97c543f7..4856c803369c 100644 --- a/src/main/java/org/junit/runner/Result.java +++ b/src/main/java/org/junit/runner/Result.java @@ -10,9 +10,8 @@ import org.junit.runner.notification.RunListener; /** - * A Result collects and summarizes information from running multiple - * tests. Since tests are expected to run correctly, successful tests are only noted in - * the count of tests that ran. + * A Result collects and summarizes information from running multiple tests. + * All tests are counted -- additional information is collected from tests that fail. */ public class Result implements Serializable { private static final long serialVersionUID = 1L;