From 832bb8322f2ca09af52769a0198b276269b53988 Mon Sep 17 00:00:00 2001 From: David Saff Date: Tue, 8 Dec 2009 10:15:44 -0500 Subject: [PATCH] Clarify that annotating suite has no effect --- .../java/org/junit/experimental/categories/Categories.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/junit/experimental/categories/Categories.java b/src/main/java/org/junit/experimental/categories/Categories.java index d8ec1d1370d0..ae602079de86 100644 --- a/src/main/java/org/junit/experimental/categories/Categories.java +++ b/src/main/java/org/junit/experimental/categories/Categories.java @@ -21,6 +21,9 @@ * annotated with either the category given with the @IncludeCategory * annotation, or a subtype of that category. * + * Note that, for now, annotating suites with {@code @Category} has no effect. + * Categories must be annotated on the direct method or class. + * * Example: * *