[jsword-svn] jsword/java/jswordtest/org/crosswire/jsword/book s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Mon May 16 17:43:20 MST 2005
Update of /cvs/jsword/jsword/java/jswordtest/org/crosswire/jsword/book
In directory www.crosswire.org:/tmp/cvs-serv23836/java/jswordtest/org/crosswire/jsword/book
Modified Files:
BooksTest.java BookAdvancedParentTst.java
BookDriverParentTst.java BookMetaDataTest.java
BookParentTst.java OsisTest.java SentanceUtilTest.java
ReadEverything.java
Log Message:
Added support for CheckStyle plugin.
Added a few more CheckStyle rules.
Fixed a spelling mistake.
Index: ReadEverything.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jswordtest/org/crosswire/jsword/book/ReadEverything.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** ReadEverything.java 10 May 2005 02:39:23 -0000 1.29
--- ReadEverything.java 17 May 2005 00:43:17 -0000 1.30
***************
*** 37,41 ****
* Test to check that all modules can be read.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 37,41 ----
* Test to check that all modules can be read.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
Index: BookDriverParentTst.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jswordtest/org/crosswire/jsword/book/BookDriverParentTst.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** BookDriverParentTst.java 10 May 2005 02:39:23 -0000 1.3
--- BookDriverParentTst.java 17 May 2005 00:43:17 -0000 1.4
***************
*** 27,31 ****
* JUnit Test.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 27,31 ----
* JUnit Test.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
Index: OsisTest.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jswordtest/org/crosswire/jsword/book/OsisTest.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** OsisTest.java 10 May 2005 02:39:23 -0000 1.6
--- OsisTest.java 17 May 2005 00:43:17 -0000 1.7
***************
*** 30,34 ****
* JUnit Test.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 30,34 ----
* JUnit Test.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
Index: BookMetaDataTest.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jswordtest/org/crosswire/jsword/book/BookMetaDataTest.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** BookMetaDataTest.java 10 May 2005 02:39:23 -0000 1.4
--- BookMetaDataTest.java 17 May 2005 00:43:17 -0000 1.5
***************
*** 27,31 ****
* JUnit Test.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 27,31 ----
* JUnit Test.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
***************
*** 78,82 ****
test(v1.getFullName(), "a,b");
test(v1.getInitials(), "initials");
! test(v1.getLicence(), new URL("http://localhost/file.txt"));
test(v1.getOpenness(), Version.STATUS_PD);
v1 = VersionFactory.decodeVersion("a", "i, ,XXX, ");
--- 78,82 ----
test(v1.getFullName(), "a,b");
test(v1.getInitials(), "initials");
! test(v1.getLicense(), new URL("http://localhost/file.txt"));
test(v1.getOpenness(), Version.STATUS_PD);
v1 = VersionFactory.decodeVersion("a", "i, ,XXX, ");
***************
*** 86,90 ****
test(v1.getFullName(), "a");
test(v1.getInitials(), "i");
! test(v1.getLicence(), null);
test(v1.getOpenness(), Version.STATUS_UNKNOWN);
v1 = VersionFactory.decodeVersion("abcabc", " , , , ");
--- 86,90 ----
test(v1.getFullName(), "a");
test(v1.getInitials(), "i");
! test(v1.getLicense(), null);
test(v1.getOpenness(), Version.STATUS_UNKNOWN);
v1 = VersionFactory.decodeVersion("abcabc", " , , , ");
***************
*** 94,98 ****
test(v1.getFullName(), "abcabc");
test(v1.getInitials(), "a");
! test(v1.getLicence(), null);
test(v1.getOpenness(), Version.STATUS_UNKNOWN);
--- 94,98 ----
test(v1.getFullName(), "abcabc");
test(v1.getInitials(), "a");
! test(v1.getLicense(), null);
test(v1.getOpenness(), Version.STATUS_UNKNOWN);
Index: SentanceUtilTest.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jswordtest/org/crosswire/jsword/book/SentanceUtilTest.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** SentanceUtilTest.java 10 May 2005 02:39:23 -0000 1.10
--- SentanceUtilTest.java 17 May 2005 00:43:17 -0000 1.11
***************
*** 29,33 ****
* .
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 29,33 ----
* .
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
Index: BookParentTst.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jswordtest/org/crosswire/jsword/book/BookParentTst.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** BookParentTst.java 10 May 2005 02:39:23 -0000 1.6
--- BookParentTst.java 17 May 2005 00:43:17 -0000 1.7
***************
*** 31,35 ****
* For when we don't actually want to do testing of responses
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 31,35 ----
* For when we don't actually want to do testing of responses
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
Index: BookAdvancedParentTst.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jswordtest/org/crosswire/jsword/book/BookAdvancedParentTst.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** BookAdvancedParentTst.java 10 May 2005 02:39:23 -0000 1.3
--- BookAdvancedParentTst.java 17 May 2005 00:43:17 -0000 1.4
***************
*** 25,29 ****
* JUnit Test.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 25,29 ----
* JUnit Test.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
Index: BooksTest.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jswordtest/org/crosswire/jsword/book/BooksTest.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** BooksTest.java 10 May 2005 02:39:23 -0000 1.13
--- BooksTest.java 17 May 2005 00:43:17 -0000 1.14
***************
*** 33,37 ****
* JUnit Test.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 33,37 ----
* JUnit Test.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
More information about the jsword-svn
mailing list