Return-Path: Delivered-To: apmail-jackrabbit-commits-archive@www.apache.org Received: (qmail 62089 invoked from network); 3 Dec 2006 21:00:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Dec 2006 21:00:26 -0000 Received: (qmail 3042 invoked by uid 500); 3 Dec 2006 21:00:35 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 3011 invoked by uid 500); 3 Dec 2006 21:00:35 -0000 Mailing-List: contact commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list commits@jackrabbit.apache.org Received: (qmail 3002 invoked by uid 99); 3 Dec 2006 21:00:35 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Dec 2006 13:00:34 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Dec 2006 13:00:25 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 9F98A1A9846; Sun, 3 Dec 2006 12:59:45 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r481890 - in /jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/test: ./ TestAll.java Date: Sun, 03 Dec 2006 20:59:45 -0000 To: commits@jackrabbit.apache.org From: jukka@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061203205945.9F98A1A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jukka Date: Sun Dec 3 12:59:44 2006 New Revision: 481890 URL: http://svn.apache.org/viewvc?view=rev&rev=481890 Log: JCR-612: Added a TestAll class that invokes jackrabbit-jcr-tests Added: jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/test/ jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/test/TestAll.java (with props) Added: jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/test/TestAll.java URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/test/TestAll.java?view=auto&rev=481890 ============================================================================== --- jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/test/TestAll.java (added) +++ jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/test/TestAll.java Sun Dec 3 12:59:44 2006 @@ -0,0 +1,32 @@ +/* + * 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.test; + +import junit.framework.Test; +import junit.framework.TestCase; +import org.apache.jackrabbit.test.JCRTestSuite; + +/** + * Test suite that includes all test suites from jackrabbit-jcr-tests. + */ +public class TestAll extends TestCase { + + public static Test suite() { + return new JCRTestSuite(); + } + +} Propchange: jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/test/TestAll.java ------------------------------------------------------------------------------ svn:eol-style = native