[FOray-commit] SF.net SVN: foray: [10458] trunk/foray
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2008-03-19 22:30:53
|
Revision: 10458
http://foray.svn.sourceforge.net/foray/?rev=10458&view=rev
Author: victormote
Date: 2008-03-19 15:30:42 -0700 (Wed, 19 Mar 2008)
Log Message:
-----------
Add names to the tests.
Modified Paths:
--------------
trunk/foray/foray-app/src/javatest/org/foray/app/TestFOrayAll.java
trunk/foray/foray-app/src/javatest/org/foray/app/TestFOrayApp.java
trunk/foray/foray-areatree/src/javatest/org/foray/area/TestFOrayAreaTree.java
trunk/foray/foray-common/src/javatest/org/foray/common/TestFOrayCommon.java
trunk/foray/foray-font/src/javatest/org/foray/font/TestFOrayFont.java
trunk/foray/foray-fotree/src/javatest/org/foray/fotree/TestFOrayFOTree.java
trunk/foray/foray-graphic/src/javatest/org/foray/graphic/TestFOrayGraphic.java
trunk/foray/foray-hyphen/src/javatest/org/foray/hyphen/TestFOrayHyphen.java
trunk/foray/foray-ps/src/javatest/org/foray/ps/TestFOrayPS.java
trunk/foray/foray-render/src/javatest/org/foray/render/TestFOrayRender.java
Modified: trunk/foray/foray-app/src/javatest/org/foray/app/TestFOrayAll.java
===================================================================
--- trunk/foray/foray-app/src/javatest/org/foray/app/TestFOrayAll.java 2008-03-19 22:25:40 UTC (rev 10457)
+++ trunk/foray/foray-app/src/javatest/org/foray/app/TestFOrayAll.java 2008-03-19 22:30:42 UTC (rev 10458)
@@ -50,7 +50,7 @@
* @return The built test suite.
*/
public static Test suite() {
- final TestSuite testSuite = new TestSuite();
+ final TestSuite testSuite = new TestSuite("All FOray Tests");
testSuite.addTest(TestFOrayCommon.suite());
testSuite.addTest(TestFOrayPS.suite());
testSuite.addTest(TestFOrayFont.suite());
Modified: trunk/foray/foray-app/src/javatest/org/foray/app/TestFOrayApp.java
===================================================================
--- trunk/foray/foray-app/src/javatest/org/foray/app/TestFOrayApp.java 2008-03-19 22:25:40 UTC (rev 10457)
+++ trunk/foray/foray-app/src/javatest/org/foray/app/TestFOrayApp.java 2008-03-19 22:30:42 UTC (rev 10458)
@@ -52,7 +52,7 @@
* @return The built test suite.
*/
public static Test suite() {
- final TestSuite testSuite = new TestSuite();
+ final TestSuite testSuite = new TestSuite("The FOray Application");
/* First the FO Tree tests. */
testSuite.addTestSuite(TestInvalidXml.class);
Modified: trunk/foray/foray-areatree/src/javatest/org/foray/area/TestFOrayAreaTree.java
===================================================================
--- trunk/foray/foray-areatree/src/javatest/org/foray/area/TestFOrayAreaTree.java 2008-03-19 22:25:40 UTC (rev 10457)
+++ trunk/foray/foray-areatree/src/javatest/org/foray/area/TestFOrayAreaTree.java 2008-03-19 22:30:42 UTC (rev 10458)
@@ -42,7 +42,7 @@
* @return The built test suite.
*/
public static Test suite() {
- final TestSuite testSuite = new TestSuite();
+ final TestSuite testSuite = new TestSuite("FOray Area Tree");
testSuite.addTestSuite(TestPageCollection.class);
Modified: trunk/foray/foray-common/src/javatest/org/foray/common/TestFOrayCommon.java
===================================================================
--- trunk/foray/foray-common/src/javatest/org/foray/common/TestFOrayCommon.java 2008-03-19 22:25:40 UTC (rev 10457)
+++ trunk/foray/foray-common/src/javatest/org/foray/common/TestFOrayCommon.java 2008-03-19 22:30:42 UTC (rev 10458)
@@ -69,7 +69,7 @@
* @return The built test suite.
*/
public static Test suite() {
- final TestSuite testSuite = new TestSuite();
+ final TestSuite testSuite = new TestSuite("FOray Common");
testSuite.addTestSuite(TestCharVector.class);
testSuite.addTestSuite(TestUnicodeChar.class);
Modified: trunk/foray/foray-font/src/javatest/org/foray/font/TestFOrayFont.java
===================================================================
--- trunk/foray/foray-font/src/javatest/org/foray/font/TestFOrayFont.java 2008-03-19 22:25:40 UTC (rev 10457)
+++ trunk/foray/foray-font/src/javatest/org/foray/font/TestFOrayFont.java 2008-03-19 22:30:42 UTC (rev 10458)
@@ -42,7 +42,7 @@
* @return The built test suite.
*/
public static Test suite() {
- final TestSuite testSuite = new TestSuite();
+ final TestSuite testSuite = new TestSuite("FOray Font");
testSuite.addTestSuite(TestFontServer4a.class);
return testSuite;
}
Modified: trunk/foray/foray-fotree/src/javatest/org/foray/fotree/TestFOrayFOTree.java
===================================================================
--- trunk/foray/foray-fotree/src/javatest/org/foray/fotree/TestFOrayFOTree.java 2008-03-19 22:25:40 UTC (rev 10457)
+++ trunk/foray/foray-fotree/src/javatest/org/foray/fotree/TestFOrayFOTree.java 2008-03-19 22:30:42 UTC (rev 10458)
@@ -334,7 +334,7 @@
* @return The built test suite.
*/
public static Test suite() {
- final TestSuite testSuite = new TestSuite();
+ final TestSuite testSuite = new TestSuite("FOray Fo Tree");
/* Add tests of property value classes. */
testSuite.addTestSuite(TestDtLength.class);
Modified: trunk/foray/foray-graphic/src/javatest/org/foray/graphic/TestFOrayGraphic.java
===================================================================
--- trunk/foray/foray-graphic/src/javatest/org/foray/graphic/TestFOrayGraphic.java 2008-03-19 22:25:40 UTC (rev 10457)
+++ trunk/foray/foray-graphic/src/javatest/org/foray/graphic/TestFOrayGraphic.java 2008-03-19 22:30:42 UTC (rev 10458)
@@ -42,7 +42,7 @@
* @return The built test suite.
*/
public static Test suite() {
- final TestSuite testSuite = new TestSuite();
+ final TestSuite testSuite = new TestSuite("FOray Graphic");
testSuite.addTestSuite(TestGraphicServer4a.class);
testSuite.addTestSuite(TestBmpGraphic.class);
Modified: trunk/foray/foray-hyphen/src/javatest/org/foray/hyphen/TestFOrayHyphen.java
===================================================================
--- trunk/foray/foray-hyphen/src/javatest/org/foray/hyphen/TestFOrayHyphen.java 2008-03-19 22:25:40 UTC (rev 10457)
+++ trunk/foray/foray-hyphen/src/javatest/org/foray/hyphen/TestFOrayHyphen.java 2008-03-19 22:30:42 UTC (rev 10458)
@@ -45,7 +45,7 @@
* @return The built test suite.
*/
public static Test suite() {
- final TestSuite testSuite = new TestSuite();
+ final TestSuite testSuite = new TestSuite("FOray Hyphen");
testSuite.addTestSuite(TestHyphenationServer4a.class);
testSuite.addTestSuite(TestTernaryTree.class);
Modified: trunk/foray/foray-ps/src/javatest/org/foray/ps/TestFOrayPS.java
===================================================================
--- trunk/foray/foray-ps/src/javatest/org/foray/ps/TestFOrayPS.java 2008-03-19 22:25:40 UTC (rev 10457)
+++ trunk/foray/foray-ps/src/javatest/org/foray/ps/TestFOrayPS.java 2008-03-19 22:30:42 UTC (rev 10458)
@@ -45,7 +45,7 @@
* @return The built test suite.
*/
public static Test suite() {
- final TestSuite testSuite = new TestSuite();
+ final TestSuite testSuite = new TestSuite("FOray PostScript");
testSuite.addTestSuite(TestAscii85EncodeFilter.class);
testSuite.addTestSuite(TestRunLengthEncodeFilter.class);
Modified: trunk/foray/foray-render/src/javatest/org/foray/render/TestFOrayRender.java
===================================================================
--- trunk/foray/foray-render/src/javatest/org/foray/render/TestFOrayRender.java 2008-03-19 22:25:40 UTC (rev 10457)
+++ trunk/foray/foray-render/src/javatest/org/foray/render/TestFOrayRender.java 2008-03-19 22:30:42 UTC (rev 10458)
@@ -42,7 +42,7 @@
* @return The built test suite.
*/
public static Test suite() {
- final TestSuite testSuite = new TestSuite();
+ final TestSuite testSuite = new TestSuite("FOray Render");
testSuite.addTestSuite(TestRenderer.class);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|