Author: mduerig Date: Thu Feb 4 10:46:34 2010 New Revision: 906448 URL: http://svn.apache.org/viewvc?rev=906448&view=rev Log: JCR-2293: PathNotFoundException but item exists Adding test case to test suite Added: jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/observation/TestAll.java (with props) Modified: jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/Jcr2SpiTestSuite.java Modified: jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/Jcr2SpiTestSuite.java URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/Jcr2SpiTestSuite.java?rev=906448&r1=906447&r2=906448&view=diff ============================================================================== --- jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/Jcr2SpiTestSuite.java (original) +++ jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/Jcr2SpiTestSuite.java Thu Feb 4 10:46:34 2010 @@ -22,7 +22,7 @@ * Jcr2SpiTestSuite... */ public class Jcr2SpiTestSuite extends TestSuite { - + public Jcr2SpiTestSuite() { super("JCR2SPI tests"); @@ -31,6 +31,7 @@ addTest(org.apache.jackrabbit.jcr2spi.lock.TestAll.suite()); addTest(org.apache.jackrabbit.jcr2spi.name.TestAll.suite()); addTest(org.apache.jackrabbit.jcr2spi.nodetype.TestAll.suite()); + addTest(org.apache.jackrabbit.jcr2spi.observation.TestAll.suite()); addTest(org.apache.jackrabbit.jcr2spi.query.TestAll.suite()); addTest(org.apache.jackrabbit.jcr2spi.version.TestAll.suite()); addTest(org.apache.jackrabbit.jcr2spi.xml.TestAll.suite()); Added: jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/observation/TestAll.java URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/observation/TestAll.java?rev=906448&view=auto ============================================================================== --- jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/observation/TestAll.java (added) +++ jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/observation/TestAll.java Thu Feb 4 10:46:34 2010 @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.jackrabbit.jcr2spi.observation; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * TestAll... + */ +public class TestAll extends TestCase { + + public static Test suite() { + TestSuite suite = new TestSuite("jcr2spi observation tests"); + + suite.addTestSuite(ObservationTest.class); + + return suite; + } +} Propchange: jackrabbit/trunk/jackrabbit-jcr2spi/src/test/java/org/apache/jackrabbit/jcr2spi/observation/TestAll.java ------------------------------------------------------------------------------ svn:eol-style = native