You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by re...@apache.org on 2009/05/20 15:12:32 UTC

svn commit: r776688 [2/2] - in /jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test: ./ api/ api/nodetype/ api/observation/ api/query/ api/version/

Modified: jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/SaveTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/SaveTest.java?rev=776688&r1=776687&r2=776688&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/SaveTest.java (original)
+++ jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/SaveTest.java Wed May 20 13:12:30 2009
@@ -114,7 +114,7 @@
     /**
      * Tests if a {@link javax.jcr.version.VersionException} is thrown when a
      * query is stored under a checked in node.
-     * <p/>
+     * <p>
      * The tests creates a node under <code>testRoot</code> with name
      * <code>nodeName1</code> and adds a mix:versionable mixin if the node is
      * not already versionable.
@@ -154,7 +154,7 @@
     /**
      * Tests if a {@link javax.jcr.nodetype.ConstraintViolationException} is
      * thrown if a query is stored under a node which does not allow child nodes.
-     * <p/>
+     * <p>
      * The test creates a node <code>nodeName1</code> of type <code>testNodeType</code>
      * under <code>testRoot</code>. Then the test tries to store a query as
      * <code>nodeName2</code> under <code>nodeName1</code>.
@@ -175,7 +175,7 @@
     /**
      * Tests if a {@link javax.jcr.lock.LockException} is thrown if a query is
      * stored under a node locked by another <code>Session</code>.
-     * <p/>
+     * <p>
      * The test creates a node <code>nodeName1</code> of type <code>testNodeType</code>
      * under <code>testRoot</code> and locks the node with the superuser session.
      * Then the test tries to store a query as <code>nodeName2</code> under

Modified: jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathDocOrderTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathDocOrderTest.java?rev=776688&r1=776687&r2=776688&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathDocOrderTest.java (original)
+++ jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathDocOrderTest.java Wed May 20 13:12:30 2009
@@ -29,10 +29,10 @@
  * check the repository descriptor {@link javax.jcr.Repository#QUERY_XPATH_DOC_ORDER}
  * first and throw a {@link org.apache.jackrabbit.test.NotExecutableException}
  * if the descriptor is not present.
- * <p/>
+ * <p>
  * This is a level 1 test, therefore does not write content to the workspace.
  * The tests require the following content in the default workspace:
- * <p/>
+ * <p>
  * At least three nodes under the {@link #testRoot}.
  *
  * @test
@@ -49,7 +49,7 @@
 
     /**
      * Tests the <code>position()</code> function.
-     * <p/>
+     * <p>
      * For configuration description see {@link XPathDocOrderTest}.
      */
     public void testDocOrderPositionFunction() throws Exception {
@@ -66,7 +66,7 @@
     /**
      * Tests if position index and document order on child axis returns the
      * correct node.
-     * <p/>
+     * <p>
      * For configuration description see {@link XPathDocOrderTest}.
      */
     public void testDocOrderPositionIndex() throws Exception {
@@ -82,7 +82,7 @@
 
     /**
      * Tests the <code>last()</code> function.
-     * <p/>
+     * <p>
      * For configuration description see {@link XPathDocOrderTest}.
      */
     public void testDocOrderLastFunction() throws Exception {
@@ -98,7 +98,7 @@
 
     /**
      * Tests the <code>first()</code> function.
-     * <p/>
+     * <p>
      * For configuration description see {@link XPathDocOrderTest}.
      */
     public void testDocOrderFirstFunction() throws Exception {

Modified: jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathOrderByTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathOrderByTest.java?rev=776688&r1=776687&r2=776688&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathOrderByTest.java (original)
+++ jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathOrderByTest.java Wed May 20 13:12:30 2009
@@ -21,7 +21,7 @@
 /**
  * This test searches for all nodes of a specific node type and orders them by
  * the property with name configured as {@link #propertyName1}.
- * <p/>
+ * <p>
  * The default workspace must at least contain two nodes of type {@link #testNodeType}
  * with String properties named {@link #propertyName1} containing
  * distinct values.
@@ -55,7 +55,7 @@
 
     /**
      * Test if sort order <i>ascending</i> is respected.
-     * <p/>
+     * <p>
      * For configuration description see {@link XPathOrderByTest}.
      */
     public void testOrderByAscending() throws Exception {
@@ -65,7 +65,7 @@
 
     /**
      * Test if sort order <i>descending</i> is respected.
-     * <p/>
+     * <p>
      * For configuration description see {@link XPathOrderByTest}.
      */
     public void testOrderByDescending() throws Exception {
@@ -75,7 +75,7 @@
 
     /**
      * Test if default sort order is <i>ascending</i>
-     * <p/>
+     * <p>
      * For configuration description see {@link XPathOrderByTest}.
      */
     public void testOrderBy() throws Exception {

Modified: jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathPosIndexTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathPosIndexTest.java?rev=776688&r1=776687&r2=776688&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathPosIndexTest.java (original)
+++ jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathPosIndexTest.java Wed May 20 13:12:30 2009
@@ -29,10 +29,10 @@
  * check the repository descriptor {@link javax.jcr.Repository#QUERY_XPATH_POS_INDEX}
  * first and throw a {@link org.apache.jackrabbit.test.NotExecutableException}
  * if the descriptor is not present.
- * <p/>
+ * <p>
  * This is a level 1 test, therefore does not write content to the workspace.
  * The tests require the following content in the default workspace:
- * <p/>
+ * <p>
  * At least three nodes with the name {@link #nodeName1} under the
  * {@link #testRoot}.
  *
@@ -50,7 +50,7 @@
 
     /**
      * Test if the indexed notation is supported.
-     * <p/>
+     * <p>
      * For configuration description see {@link XPathPosIndexTest}.
      */
     public void testDocOrderIndexedNotation() throws Exception {

Modified: jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathQueryLevel2Test.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathQueryLevel2Test.java?rev=776688&r1=776687&r2=776688&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathQueryLevel2Test.java (original)
+++ jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/query/XPathQueryLevel2Test.java Wed May 20 13:12:30 2009
@@ -35,7 +35,7 @@
     /**
      * Test if the optional jcr:score property for full-text search is
      * supported.
-     * <p/>
+     * <p>
      * For configuration description see {@link #setUpFullTextTest()}.
      */
     public void testScoreColumn() throws Exception {
@@ -48,7 +48,7 @@
 
     /**
      * Test full-text search of the repository.<br>
-     * <p/>
+     * <p>
      * For configuration description see {@link #setUpFullTextTest()}.
      */
     public void testFullTextSearch() throws Exception {
@@ -73,7 +73,7 @@
 
     /**
      * Test range evauluation of Query.<br>
-     * <p/>
+     * <p>
      * For configuration description see {@link #setUpRangeTest()}.
      */
     public void testRange() throws Exception {
@@ -89,7 +89,7 @@
 
     /**
      * Test multi-value support of search.<br>
-     * <p/>
+     * <p>
      * For configuration description see {@link #setUpMultiValueTest()}.
      */
     public void testMultiValueSearch() throws Exception {
@@ -105,7 +105,7 @@
 
     /**
      * Test if the jcr:path pseudo property is contained in result.
-     * <p/>
+     * <p>
      * For configuration description see {@link #setUpFullTextTest()}.
      */
     public void testPathColumn() throws Exception {

Modified: jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/version/AbstractOnParentVersionTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/version/AbstractOnParentVersionTest.java?rev=776688&r1=776687&r2=776688&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/version/AbstractOnParentVersionTest.java (original)
+++ jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/version/AbstractOnParentVersionTest.java Wed May 20 13:12:30 2009
@@ -62,7 +62,8 @@
      * Add a child node to the versionable node created in the setup with the
      * name and nodetype name defined in the corresponding configuration. After
      * creation of the child node, an assertion is made for the proper onParentVersion
-     * behaviour.<p/>
+     * behaviour.
+     * <p>
      * NOTE: the child node is removed together with the versionable node after
      * each test.
      *