/* * ModeShape (http://www.modeshape.org) * * Licensed 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.modeshape.jcr; import junit.framework.Test; import junit.framework.TestSuite; /** * Test suite to wrap Apache Jackrabbit JCR technology compatibility kit (TCK) unit tests. Note that technically these are not the * actual TCK, but these are unit tests that happen to be similar to (or provided the basis for) a subset of the TCK. */ public class JcrTckTest { /** * Wrapper so that the Jackrabbit TCK test suite gets picked up by the ModeShape Maven test target. * * @return a new instance of {@link TestSuite} which contains the exact same tests as {@link org.apache.jackrabbit.test.JCRTestSuite}. */ public static Test suite() { TestingUtil.waitUntilFolderCleanedUp("target/tck_journal"); return JcrTckSuites.defaultSuiteInline(); } }