Author: aramirez
Date: Tue Jan 24 23:37:14 2006
New Revision: 372157
URL: http://svn.apache.org/viewcvs?rev=372157&view=rev
Log:
-fixed the line break of howto.apt
Modified:
maven/plugins/trunk/maven-surefire-plugin/src/site/apt/howto.apt
Modified: maven/plugins/trunk/maven-surefire-plugin/src/site/apt/howto.apt
URL:
http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-surefire-plugin/src/site/apt/howto.apt?rev=372157&r1=372156&r2=372157&view=diff
==============================================================================
--- maven/plugins/trunk/maven-surefire-plugin/src/site/apt/howto.apt (original)
+++ maven/plugins/trunk/maven-surefire-plugin/src/site/apt/howto.apt Tue Jan 24
23:37:14 2006
@@ -93,21 +93,21 @@
The following are the sample test classes.
- * TestCircle.java
- * TestRectangle.java
- * TestSquare.java
- * TestTriangle.java
- * PentagonTest.java
- * HeptagonTest.java
- * OctagonTest.java
- * Sample.java
+ TestCircle.java.\
+ TestRectangle.java.\
+ TestSquare.java.\
+ TestTriangle.java.\
+ PentagonTest.java.\
+ HeptagonTest.java.\
+ OctagonTest.java.\
+ Sample.java.
** Inclusions
By default, the surefire plugin will automatically include all test classes
with the following wildcard patterns
- <"**/Test*.java"> - includes all of its subdirectory and all java filename
that starts with "Test".
- <"**/*Test.java"> - includes all of its subdirectory and all java filename
that ends with "Test".
+ <"**/Test*.java"> - includes all of its subdirectory and all java filename
that starts with "Test".\
+ <"**/*Test.java"> - includes all of its subdirectory and all java filename
that ends with "Test".\
<"**/*TestCase.java"> - includes all of its subdirectory and all java
filename that ends with "TestCase".
If your test classes does not go with the naming convention, then configure
surefire plugin and include your test.